This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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 () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Automatic Line Wrap | |
// Automatically switch on wrapping lines in page source. | |
javascript: (() => { | |
document.querySelector("input").click(); | |
history.replaceState({}, "", location.href); | |
})(); |