-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (40 loc) · 1022 Bytes
/
Copy pathmanifest.json
File metadata and controls
48 lines (40 loc) · 1022 Bytes
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,
"name": "ColorTabs",
"version": "1.4",
"author": "Joe Jalbert",
"homepage_url": "https://github.com/joseph-jalbert/colortabs",
"description": "Set the color of the browser window based on the current domain so you'll never forget which environment you're in. Save/load your settings as a JSON file with 'export' and 'import' to keep settings across devices or share them.",
"applications": {
"gecko": {
"id": "colortabs@joejalbert.com"
}
},
"icons": {
"32": "icons/thumb.png"
},
"permissions": [
"storage",
"tabs",
"theme",
"downloads"
],
"background": {
"scripts": ["scripts/switcher.js"]
},
"browser_action": {
"default_icon": "icons/thumb.png",
"default_title": "colors"
},
"sidebar_action": {
"default_title": "ColorTabs",
"default_panel": "popup.html",
"default_icon": {
"32": "icons/thumb.png"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}