forked from alanhuang122/fl-oneclick-wiki
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest_v3.json
41 lines (41 loc) · 865 Bytes
/
manifest_v3.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
{
"name": "FL 1-click Wiki",
"description": "Open corresponding 'Fallen London Wiki' page with one click!",
"version": "1.9.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [],
"host_permissions": [
"https://fallenlondon.wiki/*"
],
"content_scripts": [
{
"matches": [
"https://www.fallenlondon.com/*"
],
"css": [
"extension.css"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "/images/fl-wiki-icon-16.png",
"32": "/images/fl-wiki-icon-32.png",
"48": "/images/fl-wiki-icon-48.png",
"128": "/images/fl-wiki-icon-128.png"
},
"web_accessible_resources": [{
"resources": [
"inject.js"
],
"matches": [
"https://*.fallenlondon.com/*"
]
}]
}