Skip to content

Instantly share code, notes, and snippets.

@luetage
luetage / youtube-reject-cookies.user.js
Last active September 21, 2022 13:56
Automatically reject cookies on consent dialog.
// ==UserScript==
// @name YouTube Reject Cookies
// @namespace https://gist.github.com/luetage/b9a34552a6abf48f992b2effabcbff80
// @updateURL https://gist.github.com/luetage/b9a34552a6abf48f992b2effabcbff80/raw
// @description Automatically reject cookies on consent dialog.
// @version 2022.9.9
// @author luetage
// @match https://www.youtube.com/*
// @run-at document-start
// ==/UserScript==
@luetage
luetage / automatic-line-wrap.js
Last active April 15, 2024 20:19
Collection of bookmarklets for Vivaldi browser command chains. Development version. Get the full recipes here ☛ https://forum.vivaldi.net/post/500553
// Automatic Line Wrap
// Automatically switch on wrapping lines in page source.
javascript: (() => {
document.querySelector("input").click();
history.replaceState({}, "", location.href);
})();
@luetage
luetage / discord-panel.user.js
Last active March 20, 2022 08:43
Discord webpanel mod for Vivaldi browser. Archived.
// ==UserScript==
// @name Discord Panel
// @namespace https://gist.github.com/luetage/7f4744c2b55dfe386fb76a5f8d82cf3a
// @description Discord webpanel mod for Vivaldi browser.
// @version 2.6
// @author luetage, lonmcgregor
// @match https://discordapp.com/channels/*
// ==/UserScript==
(function () {
@luetage
luetage / intercept-shortcuts.user.js
Last active February 23, 2024 22:11
Stops websites from hijacking keyboard shortcuts.
// ==UserScript==
// @name Intercept Shortcuts
// @namespace https://gist.github.com/luetage/b6c6fdee713c0b3569e9daa9ee7b73bb
// @updateURL https://gist.github.com/luetage/b6c6fdee713c0b3569e9daa9ee7b73bb/raw
// @supportURL https://forum.vivaldi.net/post/459981
// @description Stops websites from hijacking keyboard shortcuts.
// @version 2022.9.0
// @author luetage
// @match *://*/*
// @run-at document-start
@luetage
luetage / cursor-adjust.user.js
Last active September 21, 2022 10:42
Show default cursor over website text. Fork/copy of the Opera add-on ☛ https://addons.opera.com/en/extensions/details/cursoradjust/ created by Christoph142.
// ==UserScript==
// @name CursorAdjust
// @namespace https://gist.github.com/luetage/7e7a0a6e781550fec30274c46e09ae1b
// @updateURL https://gist.github.com/luetage/7e7a0a6e781550fec30274c46e09ae1b/raw
// @description Show default cursor over website text.
// @version 2022.9.0
// @author Christoph142, luetage
// @match <all_urls>
// ==/UserScript==