Random color for YouTube's progress bar
Change red color for a random of the YouTube's progress bar
Wat is Random color for YouTube's progress bar?
Random color for YouTube's progress bar is een Chrome-extensie ontwikkeld door Axel Juino, en de belangrijkste functie is "Change red color for a random of the YouTube's progress bar".
Extensie Screenshots
Download het CRX-bestand van de extensie Random color for YouTube's progress bar
Download Random color for YouTube's progress bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension change the video's progress bar on YouTube with a random color.
Basisinformatie over de Extensie
Naam | Random color for YouTube's progress bar |
ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
Officiële URL | https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn |
Beschrijving | Change red color for a random of the YouTube's progress bar |
Bestandsgrootte | 25.48 KB |
Aantal Installaties | 610 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2020-12-21 |
Publicatiedatum | 2020-11-29 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Axel Juino |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://axelouuu.fr |
Ondersteunde Talen | 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" ] } } |