forked from MohammedMMC/HighSeas-Doubloons-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
55 lines (55 loc) · 1.34 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
{
"manifest_version": 3,
"name": "HighSeas Doubloons",
"version": "1.6.9",
"description": "A simple extension that adds some new features to the HighSeas-Shipyard page",
"content_scripts": [
{
"matches": [
"https://highseas.hackclub.com/shipyard",
"https://high-seas.hackclub.dev/shipyard"
],
"js": [
"content.js"
]
},
{
"matches" : [
"https://high-seas.hackclub.dev/wonderdome",
"https://highseas.hackclub.com/wonderdome"
],
"js": [
"Wonder.js"
]
}
],
"icons": {
"16": "./icon-x48.png",
"48": "./icon-x48.png",
"128": "./icon-x48.png"
},
"action": {
"default_icon": {
"16": "./icon-x48.png",
"48": "./icon-x48.png",
"128": "./icon-x48.png"
},
"default_title": "HighSeas Doubloons Plus Branch",
"default_popup": "popup.html"
},
"permissions" : [
"storage",
"scripting",
"tabs"
],
"host_permissions" : [
"https://highseas.hackclub.com/wonderdome",
"https://high-seas.hackclub.dev/wonderdome"
],
"web_accessible_resources" : [{
"resources" : [
"Stop.js"
],
"matches" : ["<all_urls>"]
}]
}