From 73dfe2e1a200394de255ed3796d662cc44e4b8c7 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Tue, 2 Aug 2022 21:26:16 +0900 Subject: [PATCH] create piped-redirection.user.js --- README.md | 4 ++++ piped-redirection.user.js | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 piped-redirection.user.js diff --git a/README.md b/README.md index 9da59d7..3626a28 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ Amazon (amazon.co.jp) の商品 URL を短縮する Twitter から nitter.net にリダイレクトする +## piped-redirection.user.js + +YouTube から piped.kavin.rocks にリダイレクトする + ## twimg-shorten.user.js Twitter の画像 URL を短縮する diff --git a/piped-redirection.user.js b/piped-redirection.user.js new file mode 100644 index 0000000..7b7e4d8 --- /dev/null +++ b/piped-redirection.user.js @@ -0,0 +1,6 @@ +// ==UserScript== +// @match https://www.youtube.com/* +// ==/UserScript== +"use strict"; + +window.location.hostname = "piped.kavin.rocks";