Real Listen On Repeat
Repeat youtube videos
Cos'è Real Listen On Repeat?
Real Listen On Repeat è un'estensione di Chrome sviluppata da https://miltonlaufer.com.ar, e la sua funzione principale è "Repeat youtube videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Real Listen On Repeat
Scarica i file di estensione Real Listen On 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
A simple button to listen Youtube videos on repeat
Informazioni di Base sull'Estensione
Nome | Real Listen On Repeat |
ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
URL Ufficiale | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
Descrizione | Repeat youtube videos |
Dimensione del File | 8.98 KB |
Conteggio Installazioni | 89 |
Versione Corrente | 0.0.5.1 |
Ultimo Aggiornamento | 2017-12-08 |
Data di Pubblicazione | 2017-12-07 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://miltonlaufer.com.ar |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Real Listen On Repeat", "short_name": "RealListenOnRepeat", "description": "Repeat youtube videos", "version": "0.0.5.1", "manifest_version": 2, "author": "@onwhatthereis", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Click to set on\/off the Youtube Repeat mode" }, "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_start", "js": [ "myscript.js" ] } ] } |