Skip to content

Commit

Permalink
2.4.10
Browse files Browse the repository at this point in the history
Fixed a bug with the inability to rewind the progress bar
  • Loading branch information
SuperZombi committed Nov 30, 2023
1 parent 021c203 commit 65c17c2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Picture-in-Picture-for-Youtube

<p align="right">
<img align="left" src="https://shields.io/badge/version-v2.4.9-blue">
<img align="left" src="https://shields.io/badge/version-v2.4.10-blue">
<a href="#donate">💲Support the Project</a>
</p>

Expand Down Expand Up @@ -68,20 +68,23 @@ Activates the Picture-in-Picture button and other useful features.

## List of changes:

#### 2.4.10:
* `Shorts` Fixed a bug with the inability to rewind the progress bar.

#### 2.4.9:
* `Shorts` Fixed a bug that caused the plugin to not work.

#### 2.4.8:
* `Shorts` Fixed a bug when AutoNext not worked.

#### 2.4.7:
* `Shorts` Fixed a bug when shortcuts worked if you wrote in the search bar or comments.
* `Shorts` Added a new shortcut on spacebar - Play/Pause (This key is currently assigned by YouTube the following video)

<br/>
<details>
<summary>Other</summary>

#### 2.4.7:
* `Shorts` Fixed a bug when shortcuts worked if you wrote in the search bar or comments.
* `Shorts` Added a new shortcut on spacebar - Play/Pause (This key is currently assigned by YouTube the following video)

#### 2.4.6:
* Fixed bug with Speedometer not displaying on click

Expand Down
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"version": "2.4.9",
"version": "2.4.10",
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion chrome/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ function addFullScreen(parrent){
}
}
function addControls_and_progressBar(video){
let progress = getShortsCurrent("#shorts-container #overlay").querySelector("#progress-bar #progress-bar-line")
let progress = video.closest("#player-container").querySelector("#progress-bar #progress-bar-line")

let progressBarObserver = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
Expand Down
6 changes: 3 additions & 3 deletions pip.user.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 65c17c2

Please sign in to comment.