-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
manifest.json
34 lines (34 loc) · 867 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
{
"manifest_version": 2,
"name": "Anchr Bookmarks Collector",
"author": "Ferdinand Mütsch",
"homepage_url": "https://github.com/muety/anchr/tree/master/webext",
"version": "1.4.0",
"description": "Easily bookmark webpages to your Anchr collection",
"options_ui": {
"page": "src/options/options.html",
"browser_style": true
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": [ "src/background.js" ]
},
"icons": {
"48": "icons/logo-48.png"
},
"browser_action": {
"default_icon": "icons/logo-48.png",
"default_title": "Anchr.io",
"default_popup": "src/index.html"
},
"permissions": [
"https://anchr.io/*",
"storage",
"tabs",
"contextMenus"
]
}