Skip to content

Instantly share code, notes, and snippets.

View tacohitbox's full-sized avatar

aria tacohitbox

View GitHub Profile
@tacohitbox
tacohitbox / soap2day.dark.mode.css
Created December 30, 2022 17:02
soap2day dark mode stylus css
@-moz-document domain("soap2day.to") {
body {
background: #1B1B1B !important;
}
a {
color: #ffffff !important;
}
a:focus {
@tacohitbox
tacohitbox / no.last-fm.pro.filters.txt
Last active July 3, 2022 10:34
uBlock filters for Last.fm begging you to join Last.fm Pro and other minor annoyances
www.last.fm##.secondary-nav-item--month.secondary-nav-item.navlist-item
www.last.fm##.listening-report-promo--month
www.last.fm##.auth-dropdown-pro-text
www.last.fm##.secondary-nav-item--subscription
www.last.fm##.change-username-faded
www.last.fm##[href="/pro"]
www.last.fm##.hidden-xs.your-progress-component.buffer-standard
www.last.fm##.mpu-subscription-upsell--mpu
www.last.fm##.avatar-status-dot--subscriber
www.last.fm##.inactive.player-bar
@tacohitbox
tacohitbox / bulk-unfollow-on-twitter.md
Last active February 13, 2022 03:25
Bulk unfollow Twitter accounts for free.

To do: write actual documentation on how to use it.

For now, if you know how to paste code into DevTools. Paste this on your following page and it should do it.

If your username is @balls, go to https://twitter.com/balls/following and paste this code into DevTools.

I take no responsibility for rate limits, but I unfollowed 1k people on an alt without an issue.

function refresh() {
@tacohitbox
tacohitbox / bulkreplacefree.md
Last active February 12, 2022 22:30
How to Bulk Replace Description Text on YouTube for free

Disclaimer: This guide is working as of 1AM EST on February 2nd, 2022. This could break at any given time. If you alert me it's not working, it will not be a guarantee of a fix. You should still comment when it doesn't work just in case I actually will fix it or to alert other users that it's broken. I wrote this really simple script to get around a paywall one time.

  1. Download TubeBuddy on your flavor of browser.
  2. Navigate to the "Content" page of YouTube Studio.

The content tab of a YouTube studio account

  1. Make sure "Bulk & Misc Tools" is right here, shown in the picture.
@tacohitbox
tacohitbox / defeatblocking.user.js
Last active February 12, 2022 22:44
This is the userscript I used to defeat my school's blocking system. No joke, it worked.
// ==UserScript==
// @name Unhide Sites
// @version 1.0
// @author tacohitbox
// @match *://*/*
// @icon https://upload.wikimedia.org/wikipedia/en/thumb/9/9a/Trollface_non-free.png/220px-Trollface_non-free.png
// @grant none
// ==/UserScript==
if (document.title == "Page Blocked") {
@tacohitbox
tacohitbox / retrogames-dl.user.js
Created December 13, 2021 02:10
Userscript to download from retrogames.cc.
// ==UserScript==
// @name RetroGames.cc Downloader
// @version 1.0
// @description try to take over the world!
// @author tacohitbox
// @match https://www.retrogames.cc/*-games/*
// @icon https://www.google.com/s2/favicons?domain=retrogames.cc
// @grant none
// ==/UserScript==
@tacohitbox
tacohitbox / nopaywallstudy.user.js
Created November 15, 2021 14:41
Userscript to remove Study.com's transcript paywall
// ==UserScript==
// @name Remove paywall for Study.com
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Removes study.com's transcript paywall.
// @author tacohitbox
// @match https://study.com/academy/lesson/*
// @icon https://study.com/favicon.ico
// @grant none
// ==/UserScript==