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 Download Link Checker | |
| // @namespace https://rschu.me/ | |
| // @version 1.0.0 | |
| // @description Check the status of download links on any page | |
| // @author bulletinmybeard | |
| // @match *://example.com/* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_addStyle | |
| // @connect filehost1.com |
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 URL Rewriter | |
| // @namespace https://rschu.me/ | |
| // @version 1.0.0 | |
| // @description Rewrites URLs from one domain to another on the fly | |
| // @author Bulletinmybeard | |
| // @match *://app.external.example.com/* | |
| // @run-at document-end | |
| // @grant none | |
| // ==/UserScript== |
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 | |
| # | |
| # download_gists.sh - GitHub Gists Downloader | |
| # ============================================ | |
| # | |
| # Fetches and syncs all gists for a GitHub user to a local directory. | |
| # Only downloads files that are new or have been updated remotely. | |
| # | |
| # Features: | |
| # - Cross-platform (macOS & Linux) |