YouTube Repeater
Repeats YouTube video after it ends.
Cos'è YouTube Repeater?
YouTube Repeater è un'estensione di Chrome sviluppata da shogo, e la sua funzione principale è "Repeats YouTube video after it ends.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Repeater
Scarica i file di estensione YouTube Repeater 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
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Descrizione | Repeats YouTube video after it ends. |
Dimensione del File | 16.98 KB |
Conteggio Installazioni | 423 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2019-03-18 |
Data di Pubblicazione | 2019-03-18 |
Valutazione | 3.50/5 Totale 4 Valutazioni |
Sviluppatore | shogo |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://shogo.eu/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |