-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 622 Bytes
/
Copy pathmanifest.json
File metadata and controls
27 lines (27 loc) · 622 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
{
"manifest_version": 3,
"name": "Skipix",
"version": "1.0.0",
"description": "Automatically skip Netflix ads and recover your time",
"icons": {
"16": "assets/logo.png",
"48": "assets/logo.png",
"128": "assets/logo.png"
},
"permissions": ["storage", "activeTab"],
"host_permissions": ["*://*.netflix.com/*"],
"action": {
"default_popup": "skipix.html"
},
"content_scripts": [
{
"matches": ["*://*.netflix.com/*"],
"js": ["js/content.js"],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "js/background.js",
"type": "module"
}
}