Skip to content

Instantly share code, notes, and snippets.

View Jaygles's full-sized avatar
🎯
Focusing

Jay Sullivan Jaygles

🎯
Focusing
View GitHub Profile
@Jaygles
Jaygles / AdventureTime.csv
Last active June 12, 2022 03:07 — forked from CharlieScarver/AdventureTime.csv
List of important adventure time episodes
Season Episode Title Reason
1 2 Trouble in Lumpy Space* Introduces LSP (Only episode out of order)
1 7 Ricardio the Heart Guy Finn and PB development, Sets a returning plot
1 8 Business Time* First mention of Ooo being post-apocalyptic
1 9 My Two Favorite People Intros the Jake and Lady Rainicorn plotline
1 10 Memories of Boom Boom Mountain A look at how Finn was adopted into Jake's Family
1 12 Evicted! Intros Marceline
1 15 What is Life? Introduces Neptr
1 16 Ocean of Fear Introduces Finn's phobia
1 20 Freak City* Introduces Magic Man
/// fucktwitchads.js
const origFetch = window.fetch;
window.fetch = (url, init, ...args) => {
if (typeof url === "string") {
if (url.includes("/access_token")) {
url = url.replace("player_type=site", "player_type=embed");
console.log("[fucktwitchads] - url includes /access_token");
} else if (
url.includes("/gql") &&
# https://github.com/uBlockOrigin/uAssets/pull/3517
twitch-videoad.js application/javascript
(function() {
if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; }
var realFetch = window.fetch;
window.fetch = function(input, init) {
if ( arguments.length >= 2 && typeof input === 'string' && input.includes('/access_token') ) {
var url = new URL(arguments[0]);
url.searchParams.forEach(function(value, key) {
url.searchParams.delete(key);