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
| // ==UserScript== | |
| // @name Criticker Watchlist Exporter | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.0.6 | |
| // @description Exports the entries of a Criticker watchlist to CSV. | |
| // @author Alsweider | |
| // @match https://www.criticker.com/films/?collection=* | |
| // @match https://games.criticker.com/games/?collection=* | |
| // @icon https://www.criticker.com/favicon.ico | |
| // @grant GM_download |
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
| // ==UserScript== | |
| // @name Fix "Show Another Film" Position | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.0.4 | |
| // @description Positions the "Show Another Recommendation" link on Criticker.com statically below the Top Recommendation headline. | |
| // @author Alsweider | |
| // @match https://www.criticker.com/ | |
| // @match https://games.criticker.com/ | |
| // @icon https://www.criticker.com/favicon.ico | |
| // @grant none |
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
| // ==UserScript== | |
| // @name Pixelfed Spoiler Uncover | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.0.4 | |
| // @description Automatically reveals spoiler content on Pixelfed by clicking the "See Post" button. | |
| // @author Alsweider | |
| // Add URL to match your Pixelfed instance: | |
| // @match *://pixelfed.ru/* | |
| // @match *://pixelfed.ru/* | |
| // @match *://pixelfed.social/* |
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
| (function findDuplicatesInOnetab() { | |
| const isOneTab = document | |
| .querySelector("title") | |
| ?.innerHTML.includes("OneTab"); // cheap OneTab check | |
| if (!isOneTab) { | |
| alert("Run this script in a OneTab tab"); | |
| return; | |
| } | |
| const getOneTabLinks = () => [ |
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
| #!/bin/bash | |
| # | |
| # CatBox v2.0 | |
| # An implementation of catbox.moe API in Bash | |
| # Author: MineBartekSA | |
| # Gist: https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591 | |
| # Change log: https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591?permalink_comment_id=4596132#gistcomment-4596132 | |
| # | |
| # MIT License | |
| # |