// ==UserScript== // @name redirect to deer.socal // @namespace Violentmonkey Scripts // @match https://bsky.app/* // @grant none // @version 1.0 // @author koldinium // @description 4/12/2025, 10:43:42 AM // ==/UserScript== const url = new URL(window.location.href); url.hostname = "deer.social"; window.location.replace(url.toString());