diff options
author | Arun Isaac | 2017-07-05 14:52:53 +0530 |
---|---|---|
committer | Arun Isaac | 2017-07-05 14:54:29 +0530 |
commit | fb450c0615f1b8dcfc544b490244646e49ef761f (patch) | |
tree | f459ee9430e0ac73cbdc3d1b32bb9220496a994e /manifest.json | |
parent | 4556af202cf30f3ae49b66d3d976db7cc97ecab9 (diff) | |
download | youtube-noscript-shim-fb450c0615f1b8dcfc544b490244646e49ef761f.tar.gz youtube-noscript-shim-fb450c0615f1b8dcfc544b490244646e49ef761f.tar.lz youtube-noscript-shim-fb450c0615f1b8dcfc544b490244646e49ef761f.zip |
Integrate ViewTube.
* viewtube.js: New file.
* manifest.json (content_scripts): Add viewtube.js.
(permissions): Add storage.
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json index 65dcc5e..34b11b3 100644 --- a/manifest.json +++ b/manifest.json @@ -5,10 +5,16 @@ "description": "Use YouTube with NoScript", + "permissions": ["storage"], + "content_scripts": [ { "matches": ["https://youtube.com/*", "https://www.youtube.com/*"], "js": ["youtube-noscript-shim.user.js"] + }, + { + "matches": ["https://youtube.com/watch*", "https://www.youtube.com/watch*"], + "js": ["viewtube.js"] } ] } |