-
Notifications
You must be signed in to change notification settings - Fork 107
/
manifest.json
56 lines (56 loc) · 1.15 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
{
"manifest_version": 3,
"name": "Tab Modifier",
"version": "1.0.13",
"description": "Take control of your tabs",
"homepage_url": "https://github.com/furybee/chrome-tab-modifier",
"action": {
"default_title": "Tab Modifier",
"default_popup": "src/index.html",
"default_icon": {
"16": "assets/icon_16.png",
"32": "assets/icon_32.png",
"48": "assets/icon_48.png",
"128": "assets/icon_128.png"
}
},
"icons": {
"16": "assets/icon_16.png",
"32": "assets/icon_32.png",
"48": "assets/icon_48.png",
"128": "assets/icon_128.png"
},
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"options_page": "src/options.html",
"web_accessible_resources": [{
"resources": [
"assets/*",
"assets/*/*",
"vendor/*",
"vendor/*/*"
],
"matches": [
"<all_urls>"
]
}],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": [
"src/content.js"
]
}],
"permissions": [
"tabs",
"tabGroups",
"storage",
"contextMenus",
"scripting"
],
"host_permissions": [
"http://*/*",
"https://*/*"
]
}