Youtube Translater
Translate youtube comments to a preferred language
What is Youtube Translater?
Youtube Translater is a Chrome extension developed by theimmortalwarrior071, and its main feature is "Translate youtube comments to a preferred language".
Extension Screenshots
Download Youtube Translater Extension CRX File
Download Youtube Translater extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language.
Extension Basic Information
Name | Youtube Translater |
ID | hbmhbomgnplnfobcbmlglcpahldkepfg |
Official URL | https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg |
Description | Translate youtube comments to a preferred language |
File Size | 10.45 KB |
Installation Count | 24 |
Current Version | 0.1.0 |
Last Updated | 2023-07-27 |
Publish Date | 2023-07-27 |
Rating | 4.60/5 Total 10 Ratings |
Developer | theimmortalwarrior071 |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Translater", "description": "Translate youtube comments to a preferred language", "version": "0.1.0", "permissions": [ "storage", "tabs" ], "icons": { "128": "icons\/logo.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |