-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
34 lines (34 loc) · 1.14 KB
/
manifest.json
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
{
"name": "בודק קישורי גוגל חסומים",
"description": "בודק קישורי גוגל חסומים.",
"browser_action": {
"default_icon": "img/check-icon128.png",
"default_title": "בודק קישורי גוגל חסומים"
},
"icons": {
"128": "img/check-icon128.png", "96": "img/check-icon96.png", "72": "img/check-icon72.png",
"64": "img/check-icon64.png", "48": "img/check-icon48.png", "24": "img/check-icon24.png",
"16": "img/check-icon16.png"
},
"content_scripts": [
{
"matches": [ "http://www.google.com/*" , "https://www.google.com/*", "http://www.google.co.il/*" , "https://www.google.co.il/*","http://search.clearch.org/*" ],
"css": [ "styles/style.css" ],
"js": [ "js/jquery-1.8.3.min.js" , "js/google_check.js" ]
}
,
{ "matches": ["http://members.etrog.net.il/*" , "http://www.neto.net.il/*" ] ,
"js": [ "js/jquery-1.8.3.min.js" ,"js/etrog_fix.js" ]
}
],
"background": {
"scripts": ["js/background.js"]
},
"permissions": [
"http://*/*" ,
"https://*/*"
],
"version": "1.8",
"options_page": "options.html",
"manifest_version": 2
}