Youtube Translater
Translate youtube comments to a preferred language
Co je Youtube Translater?
Youtube Translater je rozšíření Chrome vyvinuté theimmortalwarrior071, a jeho hlavní funkcí je „Translate youtube comments to a preferred language“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Youtube Translater
Stáhněte si soubory rozšíření Youtube Translater ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language. Základní Informace o Rozšíření
| Název | |
| ID | hbmhbomgnplnfobcbmlglcpahldkepfg |
| Oficiální URL | https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg |
| Popis | Translate youtube comments to a preferred language |
| Velikost souboru | 10.45 KB |
| Počet instalací | 24 |
| Aktuální Verze | 0.1.0 |
| Poslední Aktualizace | 2023-07-27 |
| Datum Vydání | 2023-07-27 |
| Hodnocení | 4.60/5 Celkem 10 Hodnocení |
| Vývojář | theimmortalwarrior071 |
| [email protected] | |
| Typ Platby | free |
| Podporované Jazyky | 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\/*"
]
}
]
} | |