-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
148 lines (143 loc) · 3.82 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const confirmedwebpages = [
"seriouseats.com",
"pinchofyum.com",
"balancedbites.com",
"cookieandkate.com",
"therecipecritic.com",
"minimalistbaker.com",
"thekitchn.com",
"smittenkitchen.com",
"davidlebovitz.com",
"damndelicious.net",
"skinnytaste.com",
"101cookbooks.com",
"sweetashoney.co",
"loveandoliveoil.com",
"closetcooking.com",
"simplyrecipes.com",
"thefirstmess.com",
"halfbakedharvest.com",
"budgetbytes.com",
"sallysbakingaddiction.com",
"recipesfromapantry.com",
"loveandlemons.com",
"chef-in-training.com",
"thesaltymarshmallow.com",
"spendwithpennies.com",
"gimmesomeoven.com",
"theviewfromgreatisland.com",
"crunchycreamysweet.com",
"natashaskitchen.com",
"cookingclassy.com",
"dinneratthezoo.com",
"justonecookbook.com",
"wellplated.com",
"thestayathomechef.com",
"downshiftology.com",
"diethood.com",
"holycowvegan.net",
"thewoksoflife.com",
"askchefdennis.com",
"apicyperspective.com",
"tastesbetterfromscratch.com",
"veganinthefreezer.com",
"themediterraneandish.com",
"feelgoodfoodie.net",
"dinnerthendessert.com",
"thebigmansworld.com",
"ambitiouskitchen.com",
"gimmedelicious.com",
"acouplecooks.com",
"jocooks.com",
"chocolatecoveredkatie.com",
"livingthegourmet.com",
"cafedelites.com",
"grilledcheesesocial.com",
"everydaymaven.com",
"skinnyms.com",
"jessicagavin.com",
"preppykitchen.com",
"twopeasandtheirpod.com",
"panlasangpinoy.com",
"biggerbolderbaking.com",
"sugarspunrun.com",
"thepeachkitchen.com",
"bowlofdelicious.com",
"mykoreankitchen.com",
"lilluna.com",
"100daysofrealfood.com",
"momontimeout.com",
"thechunkychef.com",
"freshoffthegrid.com",
"lecremedelacrumb.com",
"culinaryhill.com",
"thefoodieaffair.com",
"asweetpeachef.com",
"hummingbirdhigh.com",
"daringgourmet.com",
"thecookierookie.com",
"detoxinista.com",
"chelseasmessyapron.com",
"familystylefood.com",
"southerndiscourse.com",
"snappygourmet.com",
"ketoconnect.net",
"nourishedkitchen.com",
"sweetpeasandsaffron.com",
"africanbites.com",
"howsweeteats.com",
"kirbiecravings.com",
"easyweeknightrecipes.com",
"grandbaby-cakes.com",
"adventuresofanurse.com",
"lifeloveandsugar.com",
"cookeatpaleo.com",
"justataste.com",
"frugalhausfrau.com",
"palatablepastime.com",
"omnivorescookbook.com",
"addapinch.com",
"kawalingpinoy.com",
"barefeetinthekitchen.com",
"panningtheglobe.com"
];
chrome.tabs.onActivated.addListener(function() {
getActivatedTab();
});
chrome.webNavigation.onCompleted.addListener(function() {
getActivatedTab();
});
function getActivatedTab(){
chrome.tabs.query({active: true, currentWindow: true}, function (tabs) {
try{
if(tabs[0]!=undefined){
var match = false;
for (i = 0; i < confirmedwebpages.length; i++) {
if (tabs[0].url.indexOf(confirmedwebpages[i]) >= 0) {
match = true;
break;
}
}
if (match) {
chrome.browserAction.setIcon({
path : {
"128": "images/approvedicon128.png"
}
})
}
else {
chrome.browserAction.setIcon({
path : {
"128": "images/icon128.png"
}
})
}
}
}
catch(err){
setTimeout(function() {
getActivatedTab();
},100);
}
})
}