aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: a57b67e0e810ae598645917f99f76f08e3161fa2 (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
{
	"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"]
	}
}