Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ted Dual Subtitles", "description": "Chrome Extension for Ted Dual Subtitles", "version": "1.0.2", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_title": "Ted Dual Subtitles", "default_icon": "icon.png" }, "permissions": [ "storage", "tabs", "downloads" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.ted.com\/talks*" ], "js": [ "contentScript.js" ], "css": [ "contentScript.css" ], "run_at": "document_end" } ] }