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": "Netflix Subtitles Translator", "version": "1.0.0", "description": "Activate this extension to easily translate and sync Netflix subtitles into any language with adjustable timing", "permissions": [ "storage", "activeTab", "notifications", "webRequest" ], "action": [], "icons": { "32": "Images\/Icons\/Icon 32.png", "64": "Images\/Icons\/Icon 64.png", "128": "Images\/Icons\/Icon 128.png", "2000": "Images\/Icons\/Icon 2000.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "css": [ "content.css" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "resources": [ "prime.js", "Images\/*" ] } ], "host_permissions": [ "<all_urls>" ] }