What do you mean by âJunkâ?
I mean a bunch of text files. They might be scripts that do one thing, or markov chain outputs I found interesting. Itâs just junk that wonât be of use to many people, but junk I want to have available online.
HTML | Styles | Scripts | Bookmarklets |
HTML Pages
These are pages, written in HTML and usually JavaScript-enabled! Theyâll mainly be small utilities.
- Checkbox Screen
- 2021-04-27 - A p5.js thing I made for Creative Coding class that ended up not being used because it wasnât what I wanted to make. I then promptly failed the class because I never turned in the final project. May contain flashing lights. Iâm also not sure if the frame cap broke. Enter with caution.
- Blaseball Player Card Generator
- My best attempt at making a Blaseball player card generator. Wasnât finished.
User Styles
These are user styles, written in CSS! For use with stuff like Stylus.
- Twitter Alt Text - v5
- For Twitter, the website. Displays alt text (if any) when hovering over tweet media. Code stolen from here and here. Yeehaw. What do I write here.
- Discord âAMOLEDâ Theme - v5
- For Discord, the website. Force Discordâs dark theme to have a completely black background. Plus, everythingâs square. Plus some other things.
User Scripts
These are user scripts, written in JavaScript! Use these with something like GreaseMonkey, or inject them into pages the good olâ fashioned way.
- Immediately Leave crates.io - v1
- For crates.io, the website. Redirects over to lib.rs, which loads faster. Incredibly useful for those pesky crates.io badges people put on their crates.
- Human-Readable File Sizes on Internet Archive - v1
- For Archive.org, the website. Formats the file sizes on the downloads list to be human-readable stuff like
1.5 MiB
instead of a really long number. You can still see the long number if you want, by hovering.
Bookmarklets
These are bookmarklets, written in JavaScript! You add them to your bookmarks, then run them with a single click. They aim to make web browsing a bit less painful. Bookmarklets are not without security risk; do feel free to check each one before running it!
Iâve found that an easy way to look at them is with the Firefox F12
consoleâs âmulti-line editorâ mode. It has a code prettifier button â and if you drag one of the links into the pane, itâll paste the code in one fell swoop!
The hyperlinks are not links to download pages â theyâre the programs themselves! If you click one, it will run the script!
Basic
- Center Document - v1
- Centers a document. If itâs too narrow/wide, change the number
maxWidth
is set to. - Pop Out into Minimal Window - v1
- Summons a pop-up of the current document with hopefully less chrome than usual.
- Checkbox Queries - v1
- Inserts a checkbox before each thing that satisfies the CSS query on a page.
- ADHD Mode - v1
- Sometimes you just need a semi-transparent horizontal bar that follows your cursor. This helps me read a bit.
- Fandom - Fix Images - v1
- Fandom really really really sucks. Use this in tandem with putting
?action=render
at the end of the URL, and maybe itâll become a usable info source for once. (May be buggy! Text me if it is.)
Fancy
- Discord - Light Sidebar - v1
- I think itâs foolish of Discord to not allow light sidebar on dark theme. Iâve fixed it for them. I think they should pay me a billion kajillion dollars.
- YouTube - Toggle FullWindow - v3
- Use this on YouTube to toggle between the normal player and what I have dubbed âFullWindowâ (the embedded player without an iframe)
- Twitter - Dismiss Topics - v2
- Use this on Twitter to get rate limited, probably. It clicks the âNot Interestedâ button on any topics that donât have any relation to the
WHITELIST
defined at the start. I made this because Iâm petty and I hate Twitter. May be extended in the future to dismiss âWho to Followâ, too.
âWhy are User Scripts and Bookmarklets separate?â
I feel Bookmarklets are more for acting on a page, and User Scripts are more for reconfiguring a page; the latter is already decided upon arrival to the page.