14 lines
537 B
JavaScript
14 lines
537 B
JavaScript
// ==UserScript==
|
|
// @name redir x.com and twitter.com -> bsky.app
|
|
// @namespace zomo.dev
|
|
// @match https://x.com/*
|
|
// @match https://twitter.com/*
|
|
// @version 1.0
|
|
// @description fuck twitter
|
|
// @runat document-start
|
|
// @downloadURL https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/fuck-twitter.user.js
|
|
// @supportURL https://git.zomo.dev/zomo/browser-scripts/issues
|
|
// @homepageURL https://git.zomo.dev/zomo/browser-scripts
|
|
// ==/UserScript==
|
|
location.href = 'https://bsky.app/'
|