-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest-ff.json
40 lines (37 loc) · 1.04 KB
/
manifest-ff.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": "Order Tabs by Domain",
"version": "0.2.3",
"description": "Tabs ordered by domain, as god intended.",
"homepage_url": "https://github.com/doriantaylor/w3x-taborder",
"applications": {
"gecko": {
"id": "{99d1b038-84d5-4cf3-a785-9dad767ca337}"
}
},
"icons": {
"16": "icons/tab-16.png",
"32": "icons/tab-32.png",
"48": "icons/tab-48.png",
"64": "icons/tab-64.png",
"96": "icons/tab-96.png"
},
"permissions": ["tabs", "bookmarks", "storage", "menus", "contextMenus"],
"background": {
"scripts": ["main.js"]
},
"options_ui": {
"page": "prefs.xhtml"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/tab-16.png",
"32": "icons/tab-32.png",
"48": "icons/tab-48.png",
"64": "icons/tab-64.png",
"96": "icons/tab-96.png"
},
"default_title": "Order Tabs by Domain"
}
}