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.
- Blaseball Player Card Generator
- My best attempt at making a Blaseball player card generator. Wasnât finished.
- "V360's 3DS Pages"
- Extremely old Weebly page, ported over here because it was static HTML anyway.
- Capture Card Monitor
- Tool to quickly repeat a 720p webcam feed with audio. Intended for use with cheap USB capture cards that show themselves to the OS as a webcam.
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.) - RSS Feed Discovery - v1
- Instead of having to download an extension to regain functionality that browsers removed for no reason, why not just use a bookmark? This shows an
alert
popup that lists every RSS-feed-relatedmeta
tag on the current page, in a nice definitionlist-like view.
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. - Bandcamp - Add a Volume Bar - v1
- Bandcamp doesn't have a volume bar for their web player! Why??? Anyway, this just adds a volume bar directly below the player. (It also works on any other page, simply adding itself as the last element in the body, lol...) Also, sorry for encoding it as a URI component. I will do it again.
â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.