YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
Vad är YouTube™ Comment Translate?
YouTube™ Comment Translate är en Chrome-tillägg utvecklad av toluschr, och dess huvudfunktion är "Automatically translate YouTube comments using the Google-Translate API".
Tilläggsskärmbilder
Ladda ner YouTube™ Comment Translate-förlängningens CRX-fil
Ladda ner YouTube™ Comment Translate-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension allows the user to translate YouTube comments with the click of a single button, right next to the comment. This is useful, i.e. when listening to music from other countries. The sourcecode is openly available on GitHub.
Grundläggande Information om Tillägg
Namn | YouTube™ Comment Translate |
ID | alaejlmlpgcffloicejpccebbeeibemo |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
Beskrivning | Automatically translate YouTube comments using the Google-Translate API |
Filstorlek | 35.86 KB |
Antal Installationer | 36,447 |
Aktuell Version | 1.2.4 |
Senast Uppdaterad | 2024-02-02 |
Publiceringsdatum | 2020-11-26 |
Betyg | 4.41/5 Totalt 91 Betyg |
Utvecklare | toluschr |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/toluschr/Youtube-Comment-Translate |
Hjälpsida URL | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube\u2122 Comment Translate", "version": "1.2.4", "description": "Automatically translate YouTube comments using the Google-Translate API", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end", "js": [ "inject.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html" }, "manifest_version": 3, "content_security_policy": [], "host_permissions": [ "*:\/\/*.youtube.com\/*" ] } |