aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 48c14fbb25f83f09b54ba7e0e95da27f59ee22c8 (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@netflix-no-skip"
		}
	},

	"content_scripts": [
		{
			"matches": [
				"https://www.netflix.com/watch/*"
			],
			"js": ["content.js"]
		}
	],

	"background": {
		"scripts": ["background.js"]
	},

	"permissions": [
		"webRequest",
		"webRequestBlocking",
		"https://www.netflix.com/watch/*"
	]
}