-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 956 Bytes
/
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
{
"name": "Netflix Stop Wasting my Time",
"short_name": "Netfix SWT",
"version": "1.2",
"description": "This Extension auto click on intro and next episode buttons on netflix.",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"action": {
"default_title": "Netfix SWT",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "images/free-red-n-clipart-library_16.png",
"32": "images/free-red-n-clipart-library_32.png",
"48": "images/free-red-n-clipart-library_48.png",
"128": "images/free-red-n-clipart-library_128.png"
},
"content_scripts": [ {
"matches": ["https://www.netflix.com/watch/*"],
"js": ["content_script.js"]
} ],
"web_accessible_resources": [{
"resources": ["fonts/BebasNeue-Regular.ttf", "images/free-red-n-clipart-library_16.png"],
"matches": ["<all_urls>"]
}],
"manifest_version": 3
}