This file contains 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
// ==UserScript== | |
// @name YouTube Shorts Fixer | |
// @namespace https://gist.github.com/abraxas86 | |
// @version 1.2 | |
// @description Replace "/shorts/" with "/watch/" because shorts format is hot garbage that nobody should tolerate | |
// @author me | |
// @match *://*.youtube.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
// ==UserScript== | |
// @name Facebook meme dump yanker | |
// @namespace http://tampermonkey.net/ | |
// @version 1.1 | |
// @description Downloads all the webp images from a Facebook mobile list as a .zip (does not handle lazy-loading, so you need to scroll to the bottom to get the whole collection) | |
// @author Abraxas86 | |
// @match *://*.facebook.com/* | |
// @grant none | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jszip/3.7.1/jszip.min.js | |
// @require https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.5/FileSaver.min.js |
This file contains 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
Public Class GvHelpers | |
''' <summary> | |
''' ASP automatically throws <th> cells in a <tbody> grouping making it tricky to target specific areas of tables | |
''' with CSS and Javascript. This method is used to break the first row of the provded gridview into a proper <thead> section. | |
''' It is recommended that you call this method on RowCreated to ensure the header is kept separate as the user modifies/browses the table, | |
''' otherwise things like flipping between pages would cause the header to get sandwiched back in a <tbody> grouping. | |
''' </summary> | |
''' <param name="gridView">The gridview to separate the header from</param> | |
''' <remarks> | |
''' Example: |
This file contains 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
// ==UserScript== | |
// @name Itch.io Toggle paid games | |
// @namespace http://tampermonkey.net/ | |
// @version 1 | |
// @description Hide/Show non-free games from various itch.io pages. | |
// @author abraxas86 | |
// @match https://itch.io/* | |
// @require https://code.jquery.com/jquery-3.6.0.min.js | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=itch.io | |
// @grant none |
This file contains 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
// ==UserScript== | |
// @name BotB Battle Timestamper | |
// @namespace https://battleofthebits.com/barracks/Profile/Abraxas86/ | |
// @version 2 | |
// @description Adds timestamp for event because trying to mental math times is too much for my stupid monke brain | |
// @author abraxas86 | |
// @match https://battleofthebits.com/arena/Battle/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=battleofthebits.com | |
// @grant none | |
// ==/UserScript== |
This file contains 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
// ==UserScript== | |
// @name Itch Collection CSV Exporter | |
// @namespace https://github.com/abraxas86/tampermonkey-scripts/blob/main/itch.io/ | |
// @version 4.5 | |
// @description Scroll down to the bottom of your collection, click the button, get CSV of your collection! | |
// @author Abraxas86 | |
// @match https://itch.io/c/* | |
// @match https://itch.io/my-purchases | |
// @match https://itch.io/b/* | |
// @match https://itch.io/bundle/* |