forked from developerish/tab-count
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (27 loc) · 739 Bytes
/
manifest.json
File metadata and controls
35 lines (27 loc) · 739 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
{
"manifest_version": 2,
"name": "Tab Count",
"version": "2.8",
"description": "Displays the count and list of open tabs from current or all windows (configurable) and allows you to select and/or close them.",
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_popup": "popup.html",
"default_name": "Tab Count",
"default_icon": "images/icon19.png",
"default_title": "Tab Count"
},
"icons": { "16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"tabs"
]
}