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": "Udemy Translate", "version": "0.2.1", "description": "Translation of subtitles for the udemy.com", "permissions": [ "storage" ], "background": { "service_worker": "src\/background\/index.js" }, "action": { "default_popup": "src\/popup\/index.html", "default_icon": "32.png" }, "icons": { "16": "16.png", "32": "32.png", "192": "192.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/www.udemy.com\/*" ], "js": [ "src\/content\/index.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "192.png", "32.png" ], "matches": [ "*:\/\/*\/*" ] } ] }