fuck twitter v1

This commit is contained in:
2025-03-29 17:48:28 -05:00
parent 2d6f757f77
commit 1c62e14eac
5 changed files with 43 additions and 0 deletions

13
dist/fuck-twitter.user.js vendored Normal file
View File

@@ -0,0 +1,13 @@
// ==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/'

View File

@@ -5,6 +5,9 @@ Requires Violentmonkey (or Tampermonkey etc): [Chrome](https://chrome.google.com
<!-- START INSTALL LINKS --> <!-- START INSTALL LINKS -->
## Installs ## Installs
- [redir x.com and twitter.com -> bsky.app](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/fuck-twitter.user.js)
- zomo.dev 1.0
- fuck twitter
- [Hunger Games BrantSteele WebP Support](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/hungergames-brantsteele-webp.user.js) - [Hunger Games BrantSteele WebP Support](https://git.zomo.dev/zomo/browser-scripts/raw/branch/main/dist/hungergames-brantsteele-webp.user.js)
- zomo.dev 1.0 - zomo.dev 1.0
- fix the form validator to allow webp images - fix the form validator to allow webp images

View File

@@ -0,0 +1 @@
location.href = 'https://bsky.app/'

View File

@@ -0,0 +1,9 @@
{
"$schema": "https://git.zomo.dev/zomo/browser-scripts-builder/raw/branch/main/meta.schema.json",
"name": "redir x.com and twitter.com -> bsky.app",
"description": "fuck twitter",
"namespace": "zomo.dev",
"match": ["https://x.com/*", "https://twitter.com/*"],
"version": "1.0",
"runat": "document-start"
}

View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "es2021",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"types": [
"../../node_modules/@types/greasemonkey",
"../../node_modules/browser-scripts-builder"
]
}
}