-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (43 loc) · 870 Bytes
/
manifest.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
41
42
43
44
45
{
"manifest_version": 2,
"name": "Tab Renamer",
"short_name": "Tab Renamer",
"author": "Mujtaba Al-Tameemi",
"description": "Customize the title of your chrome tabs",
"version": "1.0.2",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"omnibox": { "keyword" : "rn" },
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
},
"browser_action": {
"default_icon": {
"16": "icons/16.png",
"24": "icons/24.png",
"32": "icons/32.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"permissions": [
"tabs"
]
}