Skip to content

Instantly share code, notes, and snippets.

@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/*
@dpschen
dpschen / findDuplicatesInOnetab.js
Last active July 30, 2025 20:51
Find duplicates links in OneTab
(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 = () => [
@MineBartekSA
MineBartekSA / catbox
Last active November 9, 2025 05:48
CatBox - An implementation of catbox.moe API in Bash
#!/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
#