forked from justjavac/ChromeSnifferPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 876 Bytes
/
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
35
36
{
"name": "__MSG_extName__",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"short_name": "ChromeSnifferPlus",
"manifest_version": 2,
"version": "2.8.0",
"description": "__MSG_extDesc__",
"default_locale": "en",
"background": {
"page": "background.html"
},
"options_page": "option.html",
"page_action": {
"default_icon": "icon.png",
"default_title": "__MSG_pageActionTitle__",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["js/main.js"]
}
],
"permissions": [
"tabs",
"webRequest",
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"web_accessible_resources": ["js/detector.js"],
"update_url": "https://raw.github.com/justjavac/ChromeSnifferPlus/master/update.xml"
}