Skip to content

Commit

Permalink
Fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
geraked committed Jun 28, 2023
1 parent 55c0cd7 commit 7b1f7a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Vidoo",
"description": "Change the speed of medias, adjust video filters, automatically skip Ads, etc.",
"version": "1.0.6",
"version": "1.0.7",
"homepage_url": "https://github.com/geraked/vidoo",
"icons": {
"128": "icons/vidoo.png"
Expand Down
2 changes: 1 addition & 1 deletion scripts/adskip.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
if (document.hidden) return;
let es = document.querySelectorAll('.video-ads');
if (es.length > 0) {
document.querySelectorAll('.ad-showing:not(.buffering-mode) video').forEach(v => {
document.querySelectorAll('.ad-showing.playing-mode:not(.buffering-mode):not(.unstarted-mode) video').forEach(v => {
if (v.currentTime < vidend)
v.currentTime = vidend;
});
Expand Down

0 comments on commit 7b1f7a5

Please sign in to comment.