diff --git a/manifest.json b/manifest.json index 91f5771..f9e8bfb 100644 --- a/manifest.json +++ b/manifest.json @@ -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" diff --git a/scripts/adskip.js b/scripts/adskip.js index 3faa2fc..4b9965b 100644 --- a/scripts/adskip.js +++ b/scripts/adskip.js @@ -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; });