-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
60 lines (60 loc) · 1.08 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
56
57
58
59
60
{
"manifest_version": 3,
"name": "Vidoo",
"description": "Change the speed of medias, adjust video filters, automatically skip Ads, etc.",
"version": "1.1.3",
"homepage_url": "https://github.com/geraked/vidoo",
"icons": {
"128": "icons/vidoo.png"
},
"content_scripts": [
{
"matches": [
"*://*.aparat.com/*",
"*://*.youtube.com/*"
],
"js": [
"scripts/adskip.js"
],
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/control.js"
],
"css": [
"scripts/style.css"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"icons/vidoo.png"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_icon": "icons/vidoo.png",
"default_title": "Toggle ON/OFF"
},
"background": {
"service_worker": "scripts/background.js"
},
"permissions": [
"storage",
"activeTab",
"tabs",
"scripting"
],
"host_permissions": [
"<all_urls>"
]
}