Random color for YouTube's progress bar

Change red color for a random of the YouTube's progress bar

Hvad er Random color for YouTube's progress bar?

Random color for YouTube's progress bar er en Chrome-udvidelse udviklet af Axel Juino, og dens hovedfunktion er "Change red color for a random of the YouTube's progress bar".

Udvidelsesskærmbilleder

screenshot

Download Random color for YouTube's progress bar-udvidelses-CRX-fil

Download Random color for YouTube's progress bar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension change the video's progress bar on YouTube with a random color.                    

Grundlæggende oplysninger om udvidelsen

Navn Random color for YouTube's progress bar Random color for YouTube's progress bar
ID nifjmcelpmkfkofnmllhjhphjlhpdckn
Officiel URL https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn
Beskrivelse Change red color for a random of the YouTube's progress bar
Filstørrelse 25.48 KB
Antal Installationer 610
Nuværende Version 1.1
Senest Opdateret 2020-12-21
Udgivelsesdato 2020-11-29
Bedømmelse 4.00/5 Samlet 5 Bedømmelser
Udvikler Axel Juino
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://axelouuu.fr
Understøttede Sprog 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"
        ]
    }
}