forked from martinkadlec0/Smart-RSS
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmanifest.json
79 lines (79 loc) · 1.75 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
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
{
"name": "Smart RSS",
"developer": {
"name": "zakius",
"url": ""
},
"description": "RSS Reader",
"manifest_version": 2,
"version": "2.24.0",
"background": {
"page": "index.html"
},
"permissions": [
"unlimitedStorage",
"alarms",
"tabs",
"contextMenus",
"<all_urls>",
"*://*/*",
"https://code.fb.com/*",
"https://dev.opera.com/*",
"webRequest",
"webRequestBlocking",
"notifications"
],
"chromium_permissions": [
"unlimitedStorage",
"contextMenus",
"alarms",
"tabs",
"<all_urls>",
"notifications"
],
"content_security_policy": "default-src * 'self' data: 'unsafe-inline'; script-src 'self'; style-src * 'self' data: 'unsafe-inline'; img-src * 'self' data:; object-src 'self'",
"chromium_content_security_policy": "script-src 'self'; object-src 'self'",
"browser_action": {
"default_title": "Smart RSS",
"default_icon": {
"19": "images/reload_anim_1.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"rssDetector/scan.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"19": "images/icon19-arrow-orange.png",
"48": "images/48-inverted-round.png",
"64": "images/64-inverted-round.png",
"96": "images/96-inverted-round.png",
"128": "images/128-inverted-round.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+R",
"mac": "Command+Shift+R",
"chromeos": "Ctrl+Shift+R",
"linux": "Ctrl+Shift+R"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}