-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 850 Bytes
/
Copy pathmanifest.json
File metadata and controls
37 lines (37 loc) · 850 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
{
"name": "Tab Renamer",
"version": "4",
"manifest_version": 2,
"description": "Renames tabs",
"icons": {
"128": "images/128.png",
"16": "images/16.png",
"48": "images/48.png"
},
"background": {
"scripts": [
"js/store.js",
"js/util.js",
"js/background.js"
],
"persistent": false
},
"content_scripts": [{
"js": ["js/content.js"],
"matches": ["http://*/*", "https://*/*"]
}],
"browser_action": {
"default_title": "Rename Tab",
"default_icon": "images/48.png"
},
"permissions": [
"tabs",
"storage",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"images/chrome-favicon.png"
],
"options_page": "html/options.html"
}