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 No Translation", "version": "2.0.65", "description": "A web browser extension that prevents auto-translation on YouTube (titles, dubbing, video descriptions)", "icons": { "48": "assets\/icons\/icon.png", "96": "assets\/icons\/icon.png" }, "action": { "default_icon": { "48": "assets\/icons\/icon.png", "96": "assets\/icons\/icon.png" }, "default_popup": "dist\/popup\/popup.html", "default_title": "YNT" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "dist\/browser-polyfill.js", "dist\/content\/content.js" ] } ], "background": { "service_worker": "dist\/background\/background.js" }, "web_accessible_resources": [ { "resources": [ "dist\/content\/audioTranslation\/audioScript.js", "dist\/content\/descriptionTranslation\/descriptionScript.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] }