-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (57 loc) · 1.35 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
{
"manifest_version": 3,
"name": "Persistent SEO Sidebar",
"version": "1.7",
"description": "A Chrome extension with a persistent sidebar to display SEO information.",
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting",
"webRequest",
"declarativeContent"
],
"host_permissions": [
"*://*/*"
],
"web_accessible_resources": [
{
"resources": [
"sidebar.html",
"settings.html"
],
"matches": [
"*://*/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons/sidebar-icon-16.png",
"48": "icons/sidebar-icon-48.png",
"128": "icons/sidebar-icon-128.png"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content_script.js",
"sidebar_injector.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons/sidebar-icon-16.png",
"48": "icons/sidebar-icon-48.png",
"128": "icons/sidebar-icon-128.png"
},
"options_page": "settings.html"
}