Youtube Translater

Translate youtube comments to a preferred language

Cos'è Youtube Translater?

Youtube Translater è un'estensione di Chrome sviluppata da theimmortalwarrior071, e la sua funzione principale è "Translate youtube comments to a preferred language".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Youtube Translater

Scarica i file di estensione Youtube Translater in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language.                    

Informazioni di Base sull'Estensione

Nome Youtube Translater Youtube Translater
ID hbmhbomgnplnfobcbmlglcpahldkepfg
URL Ufficiale https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg
Descrizione Translate youtube comments to a preferred language
Dimensione del File 10.45 KB
Conteggio Installazioni 24
Versione Corrente 0.1.0
Ultimo Aggiornamento 2023-07-27
Data di Pubblicazione 2023-07-27
Valutazione 4.60/5 Totale 10 Valutazioni
Sviluppatore theimmortalwarrior071
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}