Random color for YouTube's progress bar
Change red color for a random of the YouTube's progress bar
Cos'è Random color for YouTube's progress bar?
Random color for YouTube's progress bar è un'estensione di Chrome sviluppata da Axel Juino, e la sua funzione principale è "Change red color for a random of the YouTube's progress bar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Random color for YouTube's progress bar
Scarica i file di estensione Random color for YouTube's progress bar 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
This extension change the video's progress bar on YouTube with a random color.
Informazioni di Base sull'Estensione
Nome | Random color for YouTube's progress bar |
ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
URL Ufficiale | https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn |
Descrizione | Change red color for a random of the YouTube's progress bar |
Dimensione del File | 25.48 KB |
Conteggio Installazioni | 610 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2020-12-21 |
Data di Pubblicazione | 2020-11-29 |
Valutazione | 4.00/5 Totale 5 Valutazioni |
Sviluppatore | Axel Juino |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://axelouuu.fr |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Random color for YouTube's progress bar", "description": "Change red color for a random of the YouTube's progress bar", "version": "1.1", "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "icons": { "128": "img\/icon_128.png" }, "background": { "scripts": [ "script.js" ] } } |