Skip to content

Instantly share code, notes, and snippets.

@tyhallcsu
tyhallcsu / fix_qbittorrent_win10.reg
Created January 1, 2024 06:16
Fix qBittorrent Magnet File Association Windows 10/11
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE]
[HKEY_CURRENT_USER\SOFTWARE\Classes]
[HKEY_CURRENT_USER\SOFTWARE\Classes\qBittorrent.magnet]
@="URL:magnet"
"Content Type"="application/x-magnet"
"URL Protocol"=""
@tyhallcsu
tyhallcsu / Extract Dropbox Image URLs to Clipboard.js
Last active January 28, 2026 23:28
This is a userscript that extracts image URLs from a Dropbox page and copies them to the clipboard when a button is clicked. The script creates a button on the page that, when clicked, scrolls to the bottom of the page, waits for new images to load, and extracts the image URLs. The script then joins the URLs into a string separated by newlines a…
// ==UserScript==
// @name Bulk Export Dropbox Image URLs (2024)
// @version 3.1.1
// @description Extracts image URLs from a Dropbox page and copies them to the clipboard when a button is clicked.
// @author sharmanhall
// @supportURL https://github.com/tyhallcsu/dropbox-image-url-extractor/issues/new
// @namespace https://github.com/tyhallcsu/dropbox-image-url-extractor
// @homepageURL https://github.com/tyhallcsu/dropbox-image-url-extractor
// @license MIT
// @connect greasyfork.org
@tyhallcsu
tyhallcsu / README.md
Created August 18, 2025 17:51
This PowerShell script removes leftover StartAllBack registry keys.

🧹 StartAllBack Registry Cleanup Script

This PowerShell script removes leftover StartAllBack registry keys under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID.

It checks for empty subkeys and deletes them safely to clean up clutter left behind by StartAllBack.

⚠️ Disclaimer

  • Use this script at your own risk.
@tyhallcsu
tyhallcsu / Trollstore_All_Links_8076_URLS_by_sharmanhall.txt
Created September 20, 2024 05:11
Trollstore-IPA-SwaggyP6300---8,076-IPA-Archive-Links So i scraped all the archive links, and here is an unabriged collection. Most of the URLs work, and you can download the IPA files thanks to archive[dot]org. Full compiled list of 8,076 IPA links: - https://gist.github.com/tyhallcsu/30a862531c44f3e422e182bf3b23488f -------- Archive Sources Scr…
@tyhallcsu
tyhallcsu / Reddit Mail Redirect Cleaner.user.js
Created April 28, 2024 12:57
Automatically clean and redirect from tracking URLs in Reddit mail links.
// ==UserScript==
// @name Reddit Mail Redirect Cleaner
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically clean and redirect from tracking URLs in Reddit mail links.
// @author sharmanhall
// @match *://*/*
// @grant none
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @run-at document-end
@tyhallcsu
tyhallcsu / Extract-Google-Business-Data-user.js
Created September 2, 2024 23:38
Extracts and displays Google Business data with a slide-out panel for logging and information display
// ==UserScript==
// @name Extract Google Business Data (v11)
// @namespace https://example.com/
// @version 11.0
// @description Extracts and displays Google Business data with a slide-out panel for logging and information display
// @author sharmanhall
// @match https://www.google.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
// @grant GM_addStyle
// @grant GM_setValue
@tyhallcsu
tyhallcsu / cid-converter.html
Created September 4, 2024 07:06
HTML page with embedded JavaScript that implements the core functionality of the CID converter tool.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CID Converter Tool</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<style>
body {
font-family: Arial, sans-serif;
@tyhallcsu
tyhallcsu / 1337x - Combined Enhancements 2025 (v9) - TEST
Created August 8, 2024 11:05
1337x - Combined Enhancements 2025 (v9) - TEST
// ==UserScript==
// @name 1337x - Combined Enhancements 2025 (v9) - TEST
// @namespace http://tampermonkey.net/
// @version 2025.1
// @description Adds a column with torrent and magnet links, extends titles, adds images, full width site
// @author sharmanhall
// @contributor darkred, NotNeo, barn852, French Bond
// @match *://*.1337x.to/*
// @match *://*.1337x.to/torrent/*
// @match *://*.1337x.to/torrent/*
@tyhallcsu
tyhallcsu / 1337x - Combined Enhancements 2025 (v8)
Created July 26, 2024 03:34
1337x - Combined Enhancements 2025 (v8)
// ==UserScript==
// @name 1337x - Combined Enhancements 2025 (v8)
// @namespace http://tampermonkey.net/
// @version 2024.8
// @description Adds a column with torrent and magnet links, extends titles, adds images, full width site
// @author sharmanhall
// @contributor darkred, NotNeo, barn852, French Bond
// @match *://*.1337x.to/*
// @match *://*.1337x.to/torrent/*
// @match *://*.1337x.to/torrent/*
@tyhallcsu
tyhallcsu / pokemonGodEggCounter.user.js
Last active June 18, 2024 01:02
Detects and counts the number of times a specific image appears on a page, and maintains the count across page reloads
// ==UserScript==
// @name Pokemon Gods Egg Counter
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Detects and counts the number of times a specific image appears on a page, and maintains the count across page reloads
// @author sharmanhall
// @match https://pokemongods.com/*
// @grant none
// ==/UserScript==