feat: Tag for temporarily disabling piped forwarding

This commit is contained in:
Sayantan Santra 2023-11-23 19:29:21 -06:00
parent b4d9207ff4
commit 56776d7e7c
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

View file

@ -1,7 +1,7 @@
// ==UserScript==
// @name YouTube2Piped
// @namespace YouTube
// @version 1.3.0
// @version 1.4.0
// @description Redirect YouTube to chosen Piped instance
// @author SinTan
// @match *://*.youtube.com/*
@ -14,6 +14,11 @@
(function () {
"use strict";
if (location.href.endsWith('#no-piped')) {
exit;
}
// Edit instance url here to go to any instance of choice
const instance = "https://piped.video";