userscript to redirect to deer.social
@koldinium.com · 7d ago · plaintext · 13 loc · raw · 0 comments
1// ==UserScript==2// @name redirect to deer.socal3// @namespace Violentmonkey Scripts4// @match https://bsky.app/*5// @grant none6// @version 1.07// @author koldinium8// @description 4/12/2025, 10:43:42 AM9// ==/UserScript==1011const url = new URL(window.location.href);12url.hostname = "deer.social";13window.location.replace(url.toString());
login to post a comment