-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
59 lines (45 loc) · 1.18 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
{
"manifest_version": 2,
"name": "RSSPreview",
"version": "3.32",
"author": "Aurelien David",
"homepage_url": "https://github.com/aureliendavid/rsspreview",
"description": "Preview RSS feeds in browser",
"icons": {
"32": "icons/rss-32.png",
"48": "icons/rss-48.png",
"64": "icons/rss-64.png",
"128": "icons/rss-128.png",
"256": "icons/rss-256.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["rsspreview.js"]
}
],
"web_accessible_resources": ["preview.css", "rss.xsl", "icons/*.png"],
"options_ui": {
"page": "settings/options.html"
},
"page_action": {
"browser_style": true,
"default_icon": {
"19": "icons/rss-gray-19.png",
"38": "icons/rss-gray-38.png"
},
"default_title": "Feeds in page"
},
"browser_specific_settings": {
"gecko": {
"id": "{7799824a-30fe-4c67-8b3e-7094ea203c94}"
},
"gecko_android": {
"strict_min_version": "113.0"
}
},
"permissions": ["<all_urls>", "webRequest", "webRequestBlocking", "storage", "tabs"]
}