forked from shgysk8zer0/awesome-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (40 loc) · 846 Bytes
/
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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"developer": {
"name": "Chris Zuber",
"url": "https://shgysk8zer0.github.io"
},
"version": "1.3.6",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/shgysk8zer0/awesome-rss",
"icons": {
"48": "icons/subscribe-64.svg"
},
"default_locale": "en",
"permissions": [
"tabs",
"storage",
"clipboardWrite"
],
"page_action": {
"default_icon": "icons/subscribe-64.svg",
"browser_style": true
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["js/document.js"]
}],
"applications": {
"gecko": {
"strict_min_version": "52.0"
}
}
}