Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Double Subtitle", "description": "Double Subtitle", "version": "1.2.2", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_title": "YouTube Double Subtitle", "default_icon": "icon.png" }, "permissions": [ "tabs", "storage" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "contentScript.js" ], "css": [ "contentScript.css" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "injected.js", "injected_online.js", "xhook.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] }