Two Captions for YouTube & Netflix

Show subtitles in two languages on Youtube & Netflix

Cos'è Two Captions for YouTube & Netflix?

Two Captions for YouTube & Netflix è un'estensione di Chrome sviluppata da Mike Steele, e la sua funzione principale è "Show subtitles in two languages on Youtube & Netflix".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Two Captions for YouTube & Netflix

Scarica i file di estensione Two Captions for YouTube & Netflix 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

                        - Targeted at language learners who need what the speaker is saying and the translation in user's native language.                    

Informazioni di Base sull'Estensione

Nome Two Captions for YouTube & Netflix Two Captions for YouTube & Netflix
ID lpeonmjfimoijceaalocpgjjchocbiap
URL Ufficiale https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap
Descrizione Show subtitles in two languages on Youtube & Netflix
Dimensione del File 4.87 MB
Conteggio Installazioni 34,612
Versione Corrente 2.6.1
Ultimo Aggiornamento 2021-02-27
Data di Pubblicazione 2020-05-26
Valutazione 3.91/5 Totale 109 Valutazioni
Sviluppatore Mike Steele
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mikesteele/dual-captions
URL della Pagina di Aiuto https://github.com/mikesteele/dual-captions
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Two Captions for YouTube & Netflix",
    "description": "Show subtitles in two languages on Youtube & Netflix",
    "version": "2.6.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Show two captions",
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "bundle.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/*.kanopy.com\/*",
                "https:\/\/www.disneyplus.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}