From fb2a8ddc4a4a6391e4ea142bcf5869cc14c2973a Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 16 Dec 2018 05:08:27 +0100 Subject: Add a draft `manifest.json` --- manifest.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 manifest.json 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/*" + ] +} -- cgit v1.2.3