-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
74 lines (74 loc) · 1.74 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"manifest_version": 3,
"name": "Tab Renamer",
"version": "1.0.1",
"description": "Customize your tab titles and favicons for a more organized browsing experience.",
"permissions": [
"tabs",
"activeTab",
"scripting",
"storage",
"contextMenus"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Open rename dialog"
}
},
"action": {
"default_icon": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"default_title": "Tab Renamer"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"initializationContentScript.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"assets/emoji_picker_icon.png",
"assets/emojis.json"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": false
}
],
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
}