aboutsummaryrefslogtreecommitdiff
path: root/wiki/qutebrowser.md
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/qutebrowser.md')
-rw-r--r--wiki/qutebrowser.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/wiki/qutebrowser.md b/wiki/qutebrowser.md
deleted file mode 100644
index 41effd0..0000000
--- a/wiki/qutebrowser.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-layout: page
-title: Qutebrowser
-permalink: /wiki/qutebrowser
----
-
-This page contains all the custom configuration for qutebrowser.
-
-### Greasemonkey
-
-All of these scripts should be added under `~/.local/share/qutebrowser/greasemonkey/`. Then be sure to run the proper command within qutebrowser: `:greasemonkey-reload`
-
-#### Auto Skip YouTube Ads
-
- // ==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)