From f6ee9fd0cfcdea8eab44e17ee1de16e6af164fe9 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Tue, 26 Jul 2022 12:51:11 +0900 Subject: [PATCH] create nttr-redirection.user.js --- README.md | 4 ++++ nttr-redirection.user.js | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 nttr-redirection.user.js diff --git a/README.md b/README.md index 3a3e835..1765500 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,10 @@ Amazon (amazon.co.jp) の商品 URL を短縮する [@IT](https://atmarkit.itmedia.co.jp/)の見た目を調整して、記事の続きを少し読む +## nttr-redirection.user.js + +Twitter から nttr.fly.dev にリダイレクトする + ## twimg-shorten.user.js Twitter の画像 URL を短縮する diff --git a/nttr-redirection.user.js b/nttr-redirection.user.js new file mode 100644 index 0000000..cb521e8 --- /dev/null +++ b/nttr-redirection.user.js @@ -0,0 +1,6 @@ +// ==UserScript== +// @match https://twitter.com/* +// ==/UserScript== +"use strict"; + +window.location.hostname = "nttr.fly.dev";