{
"manifest_version": 2,
"author": "Tóth András",
"name": "Video With Sub",
"short_name": "VWS",
"description": "This extension will able to download HTML5 video with subtitle.",
"version": "2.5.5",
"browser_action": {
"default_icon": "css/images/icon48-gray.png"
},
"icons": {
"16": "css/images/icon16.png",
"48": "css/images/icon48.png",
"128": "css/images/icon128.png"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/SubtitleGrabber.js", "js/content.js"],
"run_at": "document_start"
}],
"background": {
"page": "background.html"
},
"sandbox": {
"pages": ["videos.html "]
},
"web_accessible_resources": ["videos.html "],
"permissions": ["<all_urls>", "webRequest", "tabs", "contextMenus", "storage", "downloads", "webRequestBlocking", "\u003Call_urls>"]
}
|