Random color for YouTube's progress bar

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

Was ist Random color for YouTube's progress bar?

Random color for YouTube's progress bar ist eine Chrome-Erweiterung, die von Axel Juino entwickelt wurde, und ihr Hauptmerkmal ist "Change red color for a random of the YouTube's progress bar".

Erweiterungsscreenshots

screenshot

Random color for YouTube's progress bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Random color for YouTube's progress bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Random color for YouTube's progress bar Random color for YouTube's progress bar
ID nifjmcelpmkfkofnmllhjhphjlhpdckn
Offizielle URL https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn
Beschreibung Change red color for a random of the YouTube's progress bar
Dateigröße 25.48 KB
Installationsanzahl 610
Aktuelle Version 1.1
Letztes Update 2020-12-21
Veröffentlichungsdatum 2020-11-29
Bewertung 4.00/5 Insgesamt 5 Bewertungen
Entwickler Axel Juino
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://axelouuu.fr
Unterstützte Sprachen 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"
        ]
    }
}