This file contains hidden or 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
UPDATE | |
segments | |
SET | |
name = REPLACE(name, '%.protonmail.com%', '.proton.me'); | |
UPDATE | |
urls | |
SET | |
url = REPLACE(url, '%.protonmail.com%', '.proton.me'); |
This file contains hidden or 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
export function createTerminalLink(url: string, text?: string) { | |
return `\u001B]8;;${url}\u0007${text ?? url}\u001B]8;;\u0007`; | |
} |
This file contains hidden or 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 YouTube Quote | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Replaces document body with a random quote from ZenQuotes API on YouTube pages | |
// @author Nobody | |
// @match *://www.youtube.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
OlderNewer