// ==UserScript== // @name Garyc.me to Noz.rip Redirect // @namespace http://tampermonkey.net/ // @version 1.1 // @description Redirects or opens noz.rip page in new tab with the same ID // @match https://garyc.me/sketch/gallery.php* // @icon https://raw.githubusercontent.com/quackbarc/garyc-sketch-tweaks/master/crunge.png // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { const id = window.location.hash.substring(1); if (!id.match(/^\d+$/)) return; const NozUrl = `https://noz.rip/sketch_bunker/gallery.php?maxid=${id}#${id}`; // Create a button to open Noz.rip in a new tab const button = document.createElement('button'); button.textContent = 'Open in Noz.rip'; button.style.position = 'fixed'; button.style.bottom = '20px'; button.style.right = '20px'; button.style.padding = '10px'; button.style.zIndex = 1000; button.style.backgroundColor = '#333'; button.style.color = '#fff'; button.style.border = 'none'; button.style.borderRadius = '5px'; button.style.cursor = 'pointer'; button.onclick = function() { window.open(NozUrl, '_blank'); }; document.body.appendChild(button); }); })();