blob: c11e8da520cc399963a010fed6f236c9e4d9600c (
plain)
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
|
{
"manifest_version": 2,
"name": "Netflix No Skip",
"description": "Don't skip intros, recaps, or credits",
"version": "0.0.1",
"applications": {
"gecko": {
"id": "com.teddywing@legibility"
}
},
"content_scripts": [
{
"matches": [
"https://www.netflix.com/watch/*"
],
"js": ["content.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"permissions": [
"webRequest",
"webRequestBlocking",
"https://www.netflix.com/watch/*"
]
}
|