Skip to content

Instantly share code, notes, and snippets.

@q00u
q00u / MurdleSimpleShare.user.js
Last active December 30, 2023 06:15
My Murdle streak is too long to share easily, and while I've been cutting the clipboard paste and separating the daily result and the streak, wouldn't it be nice to have a button to do that for me?
// ==UserScript==
// @name Murdle Simple Shares
// @namespace https://gist.github.com/q00u
// @downloadURL https://gist.github.com/q00u/c7fda688902346fc672f9870957d05d1/raw/MurdleSimpleShare.user.js
// @updateURL https://gist.github.com/q00u/c7fda688902346fc672f9870957d05d1/raw/MurdleSimpleShare.user.js
// @supportURL https://gist.github.com/q00u/c7fda688902346fc672f9870957d05d1
// @version 0.0.4
// @description Smaller shares for those with longer Murdle streaks!
// @author Phoenix G
// @match https://murdle.com/
// ==UserScript==
// @name Baka New Manga Counter
// @namespace https://gist.github.com/q00u
// @version 0.2
// @description Appends a count of manga with new chapters to "Welcome to Your Reading List"
// @author Phoenix G
// @match https://www.mangaupdates.com/mylist.html*
// @match http*://www.mangaupdates.com/mylist.html*
// @icon https://www.google.com/s2/favicons?sz=64&domain=mangaupdates.com
// @grant GM_addStyle
// ==UserScript==
// @name Textidtor
// @namespace https://gist.github.com/q00u
// @downloadURL https://gist.github.com/q00u/91bb69eef74e140005bd776608af8c5f/raw/Textidtor.user.js
// @updateURL https://gist.github.com/q00u/91bb69eef74e140005bd776608af8c5f/raw/Textidtor.user.js
// @supportURL https://gist.github.com/q00u/91bb69eef74e140005bd776608af8c5f
// @version 0.11
// @description Keyboard shortcuts for editing/correcting AI transcriptions
// @author Phoenix G
// @match http://otranscribe.com/classic/
// ==UserScript==
// @name Baka-Updates List Chapter Sorter
// @namespace https://gist.github.com/q00u
// @version 0.1
// @description Sorts titles on your lists ignoring leading articles (a, an, the)
// @author Phoenix G
// @match https://www.mangaupdates.com/mylist.html
// @icon https://www.google.com/s2/favicons?sz=64&domain=mangaupdates.com
// @grant none
// ==/UserScript==
// ==UserScript==
// @name Share Worble Guesses
// @namespace https://gist.github.com/q00u
// @version 0.3
// @description Copy Worble guesses and evals in dark+colorblind mode (but not _answer_) for Slack comment
// @author Phoenix G
// @match https://www.worble.fun
// @icon https://www.google.com/s2/favicons?sz=64&domain=worble.fun
// @grant unsafeWindow
// ==/UserScript==
// ==UserScript==
// @name Chapter Sorter Reaper Scans
// @namespace https://gist.github.com/q00u
// @version 0.3
// @description Sort released chapters in User Settings by date
// @author Phoenix G
// @match https://reaperscans.com/user-settings/
// @match https://reaperscans.com/user-settings/?tab=bookmark
// @icon http://f1.allesedv.com/16/reaperscans.com
// @grant none
// ==UserScript==
// @name Share Wordle Guesses
// @namespace https://gist.github.com/q00u
// @version 0.9
// @downloadURL https://gist.github.com/q00u/f7f61ac36ea08fea8b27f87cbd3050f7/raw/ShareWordleGuesses.user.js
// @updateURL https://gist.github.com/q00u/f7f61ac36ea08fea8b27f87cbd3050f7/raw/ShareWordleGuesses.user.js
// @supportURL https://gist.github.com/q00u/f7f61ac36ea08fea8b27f87cbd3050f7
// @description Copy Wordle guesses (but not _answer_) for Slack comment
// @author Phoenix G
// @match https://www.nytimes.com/games/wordle/index.html
body {
background-color: #000
}
#main #guild {
height: 54px;
}
#main #guild a {
background: initial;
color: #aaa
}
// ==UserScript==
// @name *Scans Link Decolorer
// @namespace https://gist.github.com/q00u
// @version 0.3
// @description Realmscans/Luminousscans makes all links (visited or not) the same color. This undoes that.
// @author Phoenix G
// @match https://realmscans.com/*
// @match https://luminousscans.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=realmscans.com
// @run-at document-idle
body {
background-color: rgb(18, 18, 19);
color: rgb(230, 230, 230);
}
svg circle, svg rect, svg path{
fill: currentColor;
}
.h-full > div {