forked from joseph-jalbert/colortabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (42 loc) · 1.15 KB
/
manifest.json
File metadata and controls
50 lines (42 loc) · 1.15 KB
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
49
50
{
"manifest_version": 2,
"name": "URL-Colors",
"version": "1.1",
"author": "Jan Vaorin",
"homepage_url": "https://github.com/Iamjava/colortabs",
"description": "Never Break Production Again!, This addon allows you to set a color for each url you want to have coloured. You will have a visual feedback of the environment you are working on.Never Break Production Again!, This addon allows you to set a color for each url you want to have coloured. You will have a visual feedback of the environment you are working on.",
"applications": {
"gecko": {
"id": "work.vaorin@gmail.com"
}
},
"icons": {
"32": "icons/icon.png"
},
"permissions": [
"storage",
"tabs",
"theme",
"downloads",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": ["scripts/switcher.js"]
},
"browser_action": {
"default_icon": "icons/icon.png",
"default_title": "colors"
},
"sidebar_action": {
"default_title": "Url-Colors",
"default_panel": "popup.html",
"default_icon": {
"32": "icons/icon.png"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}