Mercurial > addons > firefox-addons > set-aside
comparison manifest.json.in @ 0:d13d59494613
Initial revision
author | Guido Berhoerster <guido+set-aside@berhoerster.name> |
---|---|
date | Sat, 17 Nov 2018 10:44:16 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d13d59494613 |
---|---|
1 { | |
2 "manifest_version": 2, | |
3 "name": "__MSG_extensionName__", | |
4 "version": "@VERSION@", | |
5 "description": "__MSG_extensionDescription__", | |
6 "author": "Guido Berhoerster", | |
7 "homepage_url": "https://code.guido-berhoerster.org/addons/firefox-addons/set-aside/", | |
8 "default_locale": "en", | |
9 "applications": { | |
10 "gecko": { | |
11 "id": "set-aside@code.guido-berhoerster.org", | |
12 "strict_min_version": "60.0" | |
13 } | |
14 }, | |
15 "icons": { | |
16 "48": "icons/set-aside-48.png", | |
17 "96": "icons/set-aside-96.png" | |
18 }, | |
19 "permissions": [ | |
20 "tabs", | |
21 "storage", | |
22 "sessions", | |
23 "menus", | |
24 "<all_urls>" | |
25 ], | |
26 "background": { | |
27 "scripts": [ "background.js" ] | |
28 }, | |
29 "browser_action": { | |
30 "default_area": "tabstrip", | |
31 "default_title": "__MSG_defaultBrowserActionTitle__", | |
32 "theme_icons": [{ | |
33 "dark": "icons/set-aside-action-dark-16.png", | |
34 "light": "icons/set-aside-action-light-16.png", | |
35 "size": 16 | |
36 }, { | |
37 "dark": "icons/set-aside-action-dark-32.png", | |
38 "light": "icons/set-aside-action-light-32.png", | |
39 "size": 32 | |
40 }] | |
41 }, | |
42 "sidebar_action": { | |
43 "browser_style": true, | |
44 "default_icon": { | |
45 "16": "icons/set-aside-sidebar-16.png", | |
46 "32": "icons/set-aside-sidebar-32.png" | |
47 }, | |
48 "default_panel": "sidebar/tab-collection-manager.html", | |
49 "default_title": "__MSG_defaultSidebarTitle__", | |
50 "open_at_install": false | |
51 } | |
52 } |