Compare commits

...

4 commits

Author SHA1 Message Date
array-in-a-matrix a8a8de74ed Merge branch 'main' of https://git.arrayinamatrix.xyz/array-in-a-matrix/rgb-youtube-progress-bar 2022-10-04 12:29:49 -04:00
array-in-a-matrix 122f8f7f34 added twitch 2022-10-04 12:29:10 -04:00
array-in-a-matrix 03774856ed added developer 2022-10-04 12:28:41 -04:00
array-in-a-matrix 017e5fc4e6 moved image to folder 2022-10-04 12:27:50 -04:00
4 changed files with 12 additions and 6 deletions

View file

@ -2,7 +2,7 @@
## Firefox extension that makes the YouTube progress bar of videos and advertisements cycle through colors. ## Firefox extension that makes the YouTube progress bar of videos and advertisements cycle through colors.
[![Extension avalible from Firefox add-ons](getfirefox.svg)](https://addons.mozilla.org/addon/rgb-youtube-progress-bar/) [![Extension avalible from Firefox add-ons](res/getfirefox.svg)](https://addons.mozilla.org/addon/rgb-youtube-progress-bar/)
### Features ### Features

View file

@ -3,6 +3,10 @@
"name": "RGB YouTube", "name": "RGB YouTube",
"version": "4.2", "version": "4.2",
"author": "Array in a Matrix", "author": "Array in a Matrix",
"developer": {
"name": "Array in a Matrix",
"url": "https://arrayinamatrix.xyz"
},
"description": "Makes the YouTube progress bar cycle through different RGB colors.", "description": "Makes the YouTube progress bar cycle through different RGB colors.",

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -1,12 +1,14 @@
/* YouTube */
.ytp-play-progress, .ytp-play-progress,
.ytp-swatch-background-color, .ytp-swatch-background-color,
/* YouTube */
.vjs-play-progress,
.vjs-slider-bar,
/* Invidious */ /* Invidious */
/* Odysee */ /* Odysee */
.played .vjs-play-progress,
.vjs-slider-bar,
/* Vimeo */ /* Vimeo */
.played,
/* Twitch */
.seekbar-segment
{ {
animation: RGB 25s ease-in-out infinite; animation: RGB 25s ease-in-out infinite;
} }
@ -81,4 +83,4 @@
background-color: #FF0000; background-color: #FF0000;
color: #FF0000; color: #FF0000;
} }
} }