bsky2deer.js
1// ==UserScript==
2// @name Bluesky to Deer Social Redirect
3// @namespace http://tampermonkey.net/
4// @version 0.1
5// @description Redirect bsky.social URLs to deer.social
6// @author Kainoa
7// @match https://bsky.app/*
8// @match http://bsky.app/*
9// @grant none
10// ==/UserScript==
11
12(function() {
13 'use strict';
14 const currentUrl = window.location.href;
15 const newUrl = currentUrl.replace(/^https?:\/\/bsky\.app/, 'https://deer.social');
16
17 if (newUrl !== currentUrl) {
18 window.location.replace(newUrl);
19 }
20})();