-
Notifications
You must be signed in to change notification settings - Fork 23
/
manifest.json
48 lines (47 loc) · 1.15 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
{
"manifest_version": 2,
"background": {
"scripts": [
"shared/prefix-utils.js",
"shared/feed-parser.js",
"shared/settings.js",
"shared/livemark-store.js",
"background/background.js"
]
},
"content_scripts": [
{
"js": ["contentscripts/detector.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
},
{
"js": ["contentscripts/feed_finder.js"],
"matches": ["http://*/*", "https://*/*"]
}
],
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"128": "icons/feed.svg",
"16": "icons/feed.svg",
"48": "icons/feed.svg"
},
"name": "Livemarks",
"options_ui": {
"page": "pages/settings/settings.html",
"open_in_tab": true
},
"page_action": {
"default_icon": "icons/feed.svg",
"default_title": "__MSG_subscribe__",
"default_popup": "popup/popup.html"
},
"permissions": ["storage", "bookmarks", "history", "webRequest", "webRequestBlocking", "<all_urls>", "tabs", "menus"],
"version": "3.8",
"applications": {
"gecko": {
"id": "{c5867acc-54c9-4074-9574-04d8818d53e8}"
}
}
}