Custom Color for YouTube's Progress Bar
Change the red color to a custom YouTube progress bar color
Co to jest Custom Color for YouTube's Progress Bar?
Custom Color for YouTube's Progress Bar to rozszerzenie Chrome opracowane przez Magic Dev, a jego główną funkcją jest „Change the red color to a custom YouTube progress bar color”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Custom Color for YouTube's Progress Bar
Pobierz pliki rozszerzeń Custom 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
Change Youtube™ progress bar to custom color. Make your Youtube™ player awesome!
- The ability to choose the color yourself
- Selection of beautiful colors for the progress bar
- Color preservation. You don't have to choose a color every time
-------------------
! After installing this extension, refresh the previously opened tab if you want to use it on this page.
-------------------
Leave your feedback :) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ockckcgfofdgmleckhfigmkgkmafgald |
| Oficjalny URL | https://chromewebstore.google.com/detail/custom-color-for-youtubes/ockckcgfofdgmleckhfigmkgkmafgald |
| Opis | Change the red color to a custom YouTube progress bar color |
| Rozmiar pliku | 50.95 KB |
| Liczba instalacji | 1,092 |
| Aktualna Wersja | 1.0.3 |
| Ostatnia Aktualizacja | 2022-11-05 |
| Data Publikacji | 2022-08-22 |
| Ocena | 4.10/5 Łącznie 20 Oceny |
| Deweloper | Magic Dev |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Custom Color for YouTube's Progress Bar",
"description": "Change the red color to a custom YouTube progress bar color",
"version": "1.0.3",
"content_scripts": [
{
"js": [
"jquery-3.6.0.min.js",
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_idle"
}
],
"action": {
"default_icon": "img\/icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "img\/icon_128.png"
},
"permissions": [
"storage"
]
} | |