-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
33 lines (33 loc) · 1.03 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
{
"name":"Productify",
"version":"1.0",
"manifest_version":2,
"description":"Productify - control and diversify your dependence on the web",
"browser_action": {
"default_popup":"templates/front_page.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"contextMenus","tts","storage","notifications","webRequest","webRequestBlocking",
"storage","notifications","webRequest","webRequestBlocking","<all_urls>","tabs","unlimitedStorage","http://127.0.0.1:5000/*"
],
"options_page":"templates/options.html",
"content_scripts": [
{
"matches":["<all_urls>"],
"js":["js/jquery.js","js/content_script.js"]
}
],
"web_accessible_resources": [
"icons/save.png"
],
"background":{
"scripts":["js/background.js"],
"persistent":true
}
}