aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorArun Isaac2017-07-05 14:52:53 +0530
committerArun Isaac2017-07-05 14:54:29 +0530
commitfb450c0615f1b8dcfc544b490244646e49ef761f (patch)
treef459ee9430e0ac73cbdc3d1b32bb9220496a994e /manifest.json
parent4556af202cf30f3ae49b66d3d976db7cc97ecab9 (diff)
downloadyoutube-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.json6
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"]
}
]
}