Two Captions for YouTube & Netflix

Show subtitles in two languages on Youtube & Netflix

Co to jest Two Captions for YouTube & Netflix?

Two Captions for YouTube & Netflix to rozszerzenie Chrome opracowane przez Mike Steele, a jego główną funkcją jest „Show subtitles in two languages on Youtube & Netflix”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Two Captions for YouTube & Netflix

Pobierz pliki rozszerzeń Two Captions for YouTube & Netflix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Two Captions for YouTube & Netflix Two Captions for YouTube & Netflix
ID lpeonmjfimoijceaalocpgjjchocbiap
Oficjalny URL https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap
Opis Show subtitles in two languages on Youtube & Netflix
Rozmiar pliku 4.87 MB
Liczba instalacji 34,612
Aktualna Wersja 2.6.1
Ostatnia Aktualizacja 2021-02-27
Data Publikacji 2020-05-26
Ocena 3.91/5 Łącznie 109 Oceny
Deweloper Mike Steele
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mikesteele/dual-captions
Adres URL Strony Pomocy https://github.com/mikesteele/dual-captions
Obsługiwane Języki 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
}