-
Notifications
You must be signed in to change notification settings - Fork 20
/
manifest.json
52 lines (52 loc) · 1.17 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
{
"name": "Mashiro",
"description": "Enable Popular Mode on Pixiv",
"version": "0.2.0",
"manifest_version": 3,
"icons": {
"16": "./images/mashiro.png",
"32": "./images/mashiro.png",
"64": "./images/mashiro.png",
"128": "./images/mashiro.png"
},
"background": {
"service_worker": "./background.js"
},
"action": {
"default_icons": {
"16": "./images/mashiro.png",
"32": "./images/mashiro.png",
"64": "./images/mashiro.png",
"128": "./images/mashiro.png"
}
},
"permissions": [
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"jquery-3.6.0.min.js"
],
"extension_ids": [
"*"
],
"matches": [
"*://*/*"
]
}
],
"host_permissions": [
"https://www.pixiv.net/*"
],
"content_scripts": [
{
"matches": [
"https://www.pixiv.net/*"
],
"js": [
"jquery-3.6.0.min.js"
]
}
]
}