diff options
| -rw-r--r-- | manifest.json | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..c11e8da --- /dev/null +++ b/manifest.json @@ -0,0 +1,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/*" +	] +} | 
