Random color for YouTube's progress bar
Change red color for a random of the YouTube's progress bar
Vad är Random color for YouTube's progress bar?
Random color for YouTube's progress bar är en Chrome-tillägg utvecklad av Axel Juino, och dess huvudfunktion är "Change red color for a random of the YouTube's progress bar".
Tilläggsskärmbilder
Ladda ner Random color for YouTube's progress bar-förlängningens CRX-fil
Ladda ner Random color for YouTube's progress bar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension change the video's progress bar on YouTube with a random color. Grundläggande Information om Tillägg
| Namn | |
| ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
| Officiell webbadress | https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn |
| Beskrivning | Change red color for a random of the YouTube's progress bar |
| Filstorlek | 25.48 KB |
| Antal Installationer | 610 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2020-12-21 |
| Publiceringsdatum | 2020-11-29 |
| Betyg | 4.00/5 Totalt 5 Betyg |
| Utvecklare | Axel Juino |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://axelouuu.fr |
| Stödda Språk | 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"
]
}
} | |