aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorArun Isaac2017-06-29 23:21:04 +0530
committerArun Isaac2017-07-05 14:54:29 +0530
commitd303c85013b3cc18298360380407b38bd64daa41 (patch)
treedccd6586e853fdbbb58516e4465a8aed03eaa695 /manifest.json
parent85fca35562a73d68ee6aefc69fa06011f983ce4f (diff)
downloadyoutube-noscript-shim-d303c85013b3cc18298360380407b38bd64daa41.tar.gz
youtube-noscript-shim-d303c85013b3cc18298360380407b38bd64daa41.tar.lz
youtube-noscript-shim-d303c85013b3cc18298360380407b38bd64daa41.zip
Convert to WebExtension.
* manifest.json: New file. * Makefile: New file. * .gitignore: Ignore .zip files.
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..bf6d912
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,14 @@
+{
+ "manifest_version": 2,
+ "name": "YouTube NoScript shim",
+ "version": "0.2",
+
+ "description": "Use YouTube with NoScript",
+
+ "content_scripts": [
+ {
+ "matches": ["https://youtube.com/*"],
+ "js": ["youtube-noscript-shim.user.js"]
+ }
+ ]
+}