YtShadow

Shadowing extensions for youtube

Cos'è YtShadow?

YtShadow è un'estensione di Chrome sviluppata da cashewnuts903, e la sua funzione principale è "Shadowing extensions for youtube".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YtShadow

Scarica i file di estensione YtShadow 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

                        Shadowing is a deceptively simple, little-known language learning technique. You take a native audio recording, with a transcript and you speak along at as close to the same time as you can. That’s it.
https://howtogetfluent.com/shadowing-for-language-learning/

This addon makes youtube.com as shadowing platform using video and subtitle.
Listen one sentence and type it, and optionally you could speak it loud.

https://github.com/cashewnuts/yt-shadow                    

Informazioni di Base sull'Estensione

Nome YtShadow YtShadow
ID jnmgechhkhjiahonlcnjffjpoecoiike
URL Ufficiale https://chromewebstore.google.com/detail/ytshadow/jnmgechhkhjiahonlcnjffjpoecoiike
Descrizione Shadowing extensions for youtube
Dimensione del File 960 KB
Conteggio Installazioni 23
Versione Corrente 0.2.4
Ultimo Aggiornamento 2020-09-16
Data di Pubblicazione 2020-09-15
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore cashewnuts903
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cashewnuts/yt-shadow
URL della Pagina di Aiuto https://www.buymeacoffee.com/cashewnuts
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YtShadow",
    "version": "0.2.4",
    "description": "Shadowing extensions for youtube",
    "icons": {
        "24": "icons\/yt-24.png",
        "48": "icons\/yt-48.png",
        "96": "icons\/yt-96.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "yt-shadow.js"
            ],
            "css": [
                "css\/yt-blueprint.css"
            ]
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "24": "icons\/yt-24.png",
            "48": "icons\/yt-48.png",
            "96": "icons\/yt-96.png"
        },
        "default_title": "Yt Shadow",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "*:\/\/video.google.com\/*",
        "storage",
        "tabs",
        "unlimitedStorage"
    ]
}