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
// ==UserScript== | |
// @name TwitterXHeadpats | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.6 | |
// @description Replaces the heart under posts on X.com with a chibi girl enjoying headpats. | |
// @author Alsweider | |
// @match https://twitter.com/* | |
// @match https://x.com/* | |
// @grant none | |
// @downloadURL https://update.greasyfork.org/scripts/527735/TwitterXHeadpats.user.js |
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 Remove "Focus On" Section | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.2 | |
// @description Removes the element that features celebrities from the Criticker homepage. | |
// @author Alsweider | |
// @match https://www.criticker.com/ | |
// @icon https://www.criticker.com/favicon.ico | |
// @grant none | |
// @license MIT |
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/* |