add forgotten userscripts
This commit is contained in:
parent
8cbc8a0ffa
commit
184d26c50c
27999
.local/share/qutebrowser/greasemonkey/4chan-X-noupdate.user.js
Normal file
27999
.local/share/qutebrowser/greasemonkey/4chan-X-noupdate.user.js
Normal file
File diff suppressed because one or more lines are too long
18
.local/share/qutebrowser/greasemonkey/block_yt_ads.js
Normal file
18
.local/share/qutebrowser/greasemonkey/block_yt_ads.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// ==UserScript==
|
||||||
|
// @name Auto Skip YouTube Ads
|
||||||
|
// @version 1.0.0
|
||||||
|
// @description Speed up and skip YouTube ads automatically
|
||||||
|
// @author jso8910
|
||||||
|
// @match *://*.youtube.com/*
|
||||||
|
// @exclude *://*.youtube.com/subscribe_embed?*
|
||||||
|
// ==/UserScript==
|
||||||
|
setInterval(() => {
|
||||||
|
const btn = document.querySelector('.videoAdUiSkipButton,.ytp-ad-skip-button')
|
||||||
|
if (btn) {
|
||||||
|
btn.click()
|
||||||
|
}
|
||||||
|
const ad = [...document.querySelectorAll('.ad-showing')][0];
|
||||||
|
if (ad) {
|
||||||
|
document.querySelector('video').playbackRate = 10;
|
||||||
|
}
|
||||||
|
}, 50)
|
Loading…
Reference in New Issue
Block a user