diff options
author | Arun Isaac | 2017-06-29 23:21:04 +0530 |
---|---|---|
committer | Arun Isaac | 2017-07-05 14:54:29 +0530 |
commit | d303c85013b3cc18298360380407b38bd64daa41 (patch) | |
tree | dccd6586e853fdbbb58516e4465a8aed03eaa695 | |
parent | 85fca35562a73d68ee6aefc69fa06011f983ce4f (diff) | |
download | youtube-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.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 13 | ||||
-rw-r--r-- | manifest.json | 14 |
3 files changed, 28 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f66c74 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.zip
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..27872b2 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +PROJECT = youtube-noscript-shim +ZIP = zip +OUTFILES = manifest.json $(wildcard *.js) +RELEASE = $(PROJECT).zip + +.PHONY: dist clean +dist: $(RELEASE) + +clean: + rm -vf $(RELEASE) + +$(RELEASE): $(OUTFILES) + $(ZIP) -r -FS $@ $^ 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"] + } + ] +} |