File: manifest.json

Recommend this page to a friend!
  Classes of Andras Toth   Subtitle Downloader   manifest.json   Download  
File: manifest.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Subtitle Downloader
Chrome extension to download videos and subtitles
Author: By
Last change: Update of manifest.json
Date: 2 years ago
Size: 933 bytes
 

Contents

Class file image Download
{ "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>"] }