-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.11 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "__MSG_extName__",
"description": "__MSG_extDescr__",
"version": "0.1",
"manifest_version": 2,
"minimum_chrome_version": "25",
"default_locale": "en",
"icons": {
"128": "img/ext_icons/128.png"
},
"page_action": {
"default_icon": {
"128": "img/ext_icons/128.png"
},
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"background": {
"scripts": ["js/storage.js", "js/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://www.facebook.com/*"],
"css": ["css/content_script.css"],
"js": ["js/storage.js","js/content_script.js"]
}
],
"options_page": "options.html",
"permissions": [
"http://*.google.com/*",
"alarms",
"background",
"browsingData",
"contentSettings",
"declarativeContent",
"identity",
"storage",
"idle",
"notifications",
"sessions",
"tabs",
"topSites",
"webNavigation"
]
}