This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// 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") && |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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); |