-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
68 lines (68 loc) · 1.17 KB
/
manifest.json
File metadata and controls
68 lines (68 loc) · 1.17 KB
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
{
"manifest_version": 3,
"name": "RexiOry",
"description": "",
"version": "1.0",
"background": {
"service_worker": "src/romnibar/rexioryWorker.js"
},
"permissions": [
"history",
"favicon",
"bookmarks",
"search",
"storage",
"tabs",
"scripting",
"webNavigation",
"readingList"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"_favicon/*",
"index.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https://*/*",
"https://*/*"
],
"js": [
"src/romnibar/contentScript.js"
]
}
],
"commands": {
"show": {
"suggested_key": {
"default": "Alt+R",
"mac": "Alt+R"
},
"description": "Show Romnibar"
}
},
"icons": {
"16": "favicon/favicon16.png",
"32": "favicon/favicon32.png",
"48": "favicon/favicon48.png",
"128": "favicon/favicon128.png"
}
}