Skip to content

Instantly share code, notes, and snippets.

@Alsweider
Alsweider / findDuplicatesInOnetab.js
Last active May 20, 2025 20:04 — forked from dpschen/findDuplicatesInOnetab.js
Find duplicates links in OneTab - including optimisation by insectman
(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 = () => [
@Alsweider
Alsweider / Criticker Sidebar Expander.user.js
Last active April 2, 2025 01:07
Userscript to expand the sidebar on film / game pages on Criticker.com to reveal the IMDb link.
// ==UserScript==
// @name Criticker Sidebar Expander
// @namespace http://tampermonkey.net/
// @version 0.0.2
// @description Expands the sidebar on film / game pages on Criticker.com to reveal the IMDb link
// @author Alsweider
// @match https://www.criticker.com/film/*
// @match https://www.criticker.com/tv/*
// @match https://games.criticker.com/game/*
// @icon https://www.criticker.com/favicon.ico
// ==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
// ==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
@Alsweider
Alsweider / Criticker Watchlist Exporter.user.js
Last active March 17, 2025 01:11
Exports the entries of a Criticker watchlist as a CSV file.
// ==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
@Alsweider
Alsweider / Fix -Show Another Film- Position.user.js
Last active March 17, 2025 03:07
Positions the "Show Another Film" link on Criticker.com statically above the cover image of the Top Recommendation.
// ==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
@Alsweider
Alsweider / Pixelfed Spoiler Uncover-0.0.4.user.js
Created October 31, 2024 10:43
Pixelfed Spoiler Uncover
// ==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/*