YT Remote

A chrome extension to control your YouTube tabs / playback from any website / tabs.

Cos'è YT Remote?

YT Remote è un'estensione di Chrome sviluppata da shraey96, e la sua funzione principale è "A chrome extension to control your YouTube tabs / playback from any website / tabs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YT Remote

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

                        A simple unique chrome extension to control your YouTube tabs from anywhere in the browser.
Seek, Search, Play, Pause YouTube tracks and also skip video ads from anywhere in your browser


Control your YouTube tab via the extensions keyboard shortcuts:

[SPACE BAR] to play / pause
[CTRL + ARROW LEFT] to seek to previous track
[CTRL + ARROW RIGHT] to seek to next track                    

Informazioni di Base sull'Estensione

Nome YT Remote YT Remote
ID jodpnmokilccncpcgfjpmkhengjhligo
URL Ufficiale https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo
Descrizione A chrome extension to control your YouTube tabs / playback from any website / tabs.
Dimensione del File 337 KB
Conteggio Installazioni 949
Versione Corrente 1.0.6
Ultimo Aggiornamento 2020-08-30
Data di Pubblicazione 2020-02-01
Valutazione 4.14/5 Totale 14 Valutazioni
Sviluppatore shraey96
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YT Remote",
    "version": "1.0.6",
    "short_name": "YT Remote",
    "description": "A chrome extension to control your YouTube tabs \/ playback from any website \/ tabs.",
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "ytBackgroundScript.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons-main\/logo_16_c.png",
        "48": "icons-main\/logo_48_c.png",
        "128": "icons-main\/logo_128_c.png"
    },
    "manifest_version": 2
}