// ==UserScript== // @name Bluesky to Deer Social Redirect // @namespace http://tampermonkey.net/ // @version 0.1 // @description Redirect bsky.social URLs to deer.social // @author Kainoa // @match https://bsky.app/* // @match http://bsky.app/* // @grant none // ==/UserScript== (function() { 'use strict'; const currentUrl = window.location.href; const newUrl = currentUrl.replace(/^https?:\/\/bsky\.app/, 'https://deer.social'); if (newUrl !== currentUrl) { window.location.replace(newUrl); } })();