Compare commits

...

17 commits
4.1 ... main

Author SHA1 Message Date
array-in-a-matrix 673f30fd72 restore id 2023-06-16 20:35:11 -04:00
array-in-a-matrix f7fe81f3ae fix merge conflect 2023-06-16 20:33:43 -04:00
array-in-a-matrix 1cb32a5bcf updated 2023-06-16 20:28:46 -04:00
array-in-a-matrix 81cb6cb5d6 manifest extension id 2023-06-16 20:11:13 -04:00
array-in-a-matrix 2bca4e0d81 version bump 2023-06-16 20:04:28 -04:00
array-in-a-matrix 714462faa0 rumble support 2023-06-16 19:55:49 -04:00
array-in-a-matrix f79b6ccfdf updated 2023-06-16 19:39:44 -04:00
array-in-a-matrix 131120c9bd renamed project 2022-10-04 14:03:45 -04:00
array-in-a-matrix ff799300a1 added reddit 2022-10-04 13:44:48 -04:00
array-in-a-matrix 7bfcd1a627 added reddit 2022-10-04 13:44:30 -04:00
array-in-a-matrix 968d0ba654 added twitch 2022-10-04 12:42:53 -04:00
array-in-a-matrix 67c4f8777e increased version number 2022-10-04 12:32:55 -04:00
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
array-in-a-matrix 6e2327e39a Update 'README.md' 2022-09-25 16:37:56 -04:00
6 changed files with 270 additions and 343 deletions

View file

@ -1,8 +1,8 @@
# RGB YouTube Progress Bar
# RGB Progress Bar
## Firefox extension that makes the YouTube progress bar of videos and advertisements cycle through colors.
## Firefox extension that makes progress bars 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-progress-bar/)
### Features
@ -12,6 +12,11 @@ The following video sharing/hosting websites are also supported:
- Odysee
- Vimeo
- Invidious instances
- Zoom
- Twitch
- Reddit
- Kick
- Rumble
### Development

View file

@ -1,10 +1,14 @@
{
"manifest_version": 2,
"name": "RGB YouTube",
"version": "4.2",
"name": "RGB Progress Bar",
"version": "4.5.2",
"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 progress bars cycle through different RGB colors.",
"browser_specific_settings": {
"gecko": {

View file

@ -1,5 +1 @@
{
"dependencies": {
"web-ext": "^7.2.0"
}
}
{"dependencies":{"web-ext":"^7.6.2"}}

File diff suppressed because it is too large Load diff

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -1,13 +1,17 @@
.ytp-play-progress,
.ytp-swatch-background-color,
/* YouTube */
.vjs-play-progress,
.vjs-slider-bar,
.ytp-play-progress, .ytp-swatch-background-color,
/* Invidious */
/* Odysee */
.played
.vjs-play-progress,
.vjs-slider-bar,
/* Vimeo */
{
.played,
/* Twitch */
.seekbar-segment,
/* Reddit */
._3fnsfWuIyofBJBBCbeOZzM,
#vid_v2s2bbq > div:nth-child(1) > div:nth-child(3) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1)
{
animation: RGB 25s ease-in-out infinite;
}
@ -81,4 +85,4 @@
background-color: #FF0000;
color: #FF0000;
}
}
}