-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathmanifest.json
40 lines (40 loc) · 1.27 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
{
"name": "Smart RSS",
"developer": {
"name": "BS-Harou (Martin Kadlec)",
"url": "http://blog.martinkadlec.eu/"
},
"description": "RSS Reader for Opera 15+!",
"manifest_version": 2,
"version": "2.0",
"background": {
"page": "index.html"
},
"web_accessible_resources": ["libs/jquery.min.js", "libs/underscore.min.js", "libs/backbone.min.js", "libs/backbone.indexDB.js", "images/icon16_v2.png"],
"permissions": ["https://*/*", "storage", "unlimitedStorage", "alarms", "tabs", "contextMenus", "http://*/*"],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://cdnjs.cloudflare.com/ajax/libs/mocha/ https://raw.github.com/chaijs/chai/master/; object-src 'unsafe-eval';",
"browser_action": {
"default_title": "Smart RSS",
"default_icon": {
"19": "images/reload_anim_1.png"
}
},
"options_page": "options.html",
"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"
}
}
}
}