create piped-redirection.user.js

This commit is contained in:
Nebel 2022-08-02 21:26:16 +09:00
parent 7865c04215
commit 73dfe2e1a2
2 changed files with 10 additions and 0 deletions

View file

@ -14,6 +14,10 @@ Amazon (amazon.co.jp) の商品 URL を短縮する
Twitter から nitter.net にリダイレクトする Twitter から nitter.net にリダイレクトする
## piped-redirection.user.js
YouTube から piped.kavin.rocks にリダイレクトする
## twimg-shorten.user.js ## twimg-shorten.user.js
Twitter の画像 URL を短縮する Twitter の画像 URL を短縮する

View file

@ -0,0 +1,6 @@
// ==UserScript==
// @match https://www.youtube.com/*
// ==/UserScript==
"use strict";
window.location.hostname = "piped.kavin.rocks";