-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
35 lines (35 loc) · 922 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
{
"name": "Comic Text",
"author": "David Mills",
"manifest_version": 3,
"version": "3.0.0",
"description": "Replaces the built-in Chrome tooltip to enable easier reading of the mouseover title-text for popular webcomics, such as xkcd.",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"comic-text.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [{
"matches": ["<all_urls>"],
"resources": ["config.js"]
}],
"options_page": "options.html",
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "sigh-16.png",
"48": "sigh-48.png",
"128": "sigh-128.png"
},
"permissions": [
"storage"
]
}