Random color for YouTube's progress bar
Change red color for a random of the YouTube's progress bar
Co to jest Random color for YouTube's progress bar?
Random color for YouTube's progress bar to rozszerzenie Chrome opracowane przez Axel Juino, a jego główną funkcją jest „Change red color for a random of the YouTube's progress bar”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Random color for YouTube's progress bar
Pobierz pliki rozszerzeń Random color for YouTube's progress bar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension change the video's progress bar on YouTube with a random color. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
| Oficjalny URL | https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn |
| Opis | Change red color for a random of the YouTube's progress bar |
| Rozmiar pliku | 25.48 KB |
| Liczba instalacji | 610 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2020-12-21 |
| Data Publikacji | 2020-11-29 |
| Ocena | 4.00/5 Łącznie 5 Oceny |
| Deweloper | Axel Juino |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Pomocy | https://axelouuu.fr |
| Obsługiwane Języki | 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"
]
}
} | |