Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

Cos'è Youtube Repeat?

Youtube Repeat è un'estensione di Chrome sviluppata da mercury200Hg, e la sua funzione principale è "Save your preference once and it will repeat the video for your favourite songs".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Repeat

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

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

Informazioni di Base sull'Estensione

Nome Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
URL Ufficiale https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
Descrizione Save your preference once and it will repeat the video for your favourite songs
Dimensione del File 8.63 KB
Conteggio Installazioni 361
Versione Corrente 1.0.0
Ultimo Aggiornamento 2017-03-12
Data di Pubblicazione 2017-03-12
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore mercury200Hg
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}