-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest v3.json
63 lines (63 loc) · 1.74 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"manifest_version": 3,
"name": "YouTube Pearify",
"version": "1.0",
"icons": {
"1280": "icon.png"
},
"description": "Modify YouTube thumbnails to include RoyalPear's mascot, Tropius",
"action": {
"default_popup": "settings.html"
},
"permissions": [
"storage"
],
"host_permissions": ["*://*.youtube.com/*"],
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["pearify.js"],
"run_at": "document_idle"
}],
"web_accessible_resources": [{
"resources": [
"images/1.png",
"images/2.png",
"images/3.png",
"images/4.png",
"images/5.png",
"images/6.png",
"images/7.png",
"images/8.png",
"images/9.png",
"images/10.png",
"images/11.png",
"images/12.png",
"images/13.png",
"images/14.png",
"images/15.png",
"images/16.png",
"images/17.png",
"images/18.png",
"images/19.png",
"images/20.png",
"images/flip_blacklist.json",
"images/textFlipped/6.png",
"images/textFlipped/7.png",
"images/textFlipped/8.png",
"images/textFlipped/9.png",
"images/textFlipped/10.png",
"logo/peartube-white.png",
"images/devious/DO-NOT-OPEN.png.png",
"icons/cogwheel.png",
"icons/discord.png",
"icons/github.png",
"icons/help.png",
"icons/kofi.png",
"icons/youtube.png",
"fonts/gothic-regular.ttf"
],
"matches": [
"*://*/*"
]
}]
}