-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 737 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 737 Bytes
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
{
"name": "skipButton.js",
"description": "Skip any ad, not just on youtube!",
"version": "1.4.1",
"manifest_version": 3,
"permissions": [
"storage",
"activeTab",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.min.js",
"skipButton.js"
],
"all_frames": true
}
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"48": "icon48.png",
"96": "icon96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "skipButtonjs@corny.me"
}
}
}