diff options
author | Teddy Wing | 2018-12-16 05:08:27 +0100 |
---|---|---|
committer | Teddy Wing | 2018-12-16 05:08:27 +0100 |
commit | fb2a8ddc4a4a6391e4ea142bcf5869cc14c2973a (patch) | |
tree | 6a22e26b55b09b5bf88f15d03e511a0f3f3134df | |
download | netflix-immersive-fb2a8ddc4a4a6391e4ea142bcf5869cc14c2973a.tar.bz2 |
Add a draft `manifest.json`
-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/*" + ] +} |