diff options
-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"] + } + ] +} |