forked from faulker/WallabagIt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.04 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
{
"manifest_version": 2,
"name": "WallabagIt",
"description": "View/Edit/Add Wallabag Items",
"icons": {
"16": "img/wallabag-icon-48.png",
"48": "img/wallabag-icon-128.png",
"128": "img/wallabag-icon-128.png"
},
"version": "2.1.0",
"homepage_url": "https://chrome.google.com/webstore/detail/wallabagit/peehlcgckcnclnjlndmoddifcicdnabm",
"options_page": "options.html",
"background": {
"scripts": [
"js/jquery.min.js",
"js/components/settings.js",
"js/components/auth.js",
"js/components/api.js",
"js/listeners.js"
],
"persistent": false
},
"browser_action": {
"default_name": "WallabagIt",
"default_icon": "img/wallabag-icon-48.png",
"default_popup": "popup.html"
},
"commands": {
"wallabag-page": {
"suggested_key": {
"default": "Alt+Shift+W",
"mac": "Ctrl+Shift+W"
},
"description": "Save a page to your Wallabag app"
}
},
"permissions": [
"<all_urls>",
"tabs",
"storage",
"commands",
"contextMenus"
]
}