dotfile/.config/qutebrowser/greasemonkey/Invidious

18 行
540 B
Plaintext

// ==UserScript==
// @description Redirects Youtube URLs to Invidio.us
// @name Invidious Redirect
// @namespace Backend
// @include http://www.youtube.com/*
// @include https://www.youtube.com/*
// @version 1.2
// @run-at document-start
// @grant none
// ==/UserScript==
var a = 0;
setInterval(function () {
if (a === 0 && window.location.href.indexOf('watch?') > -1 && window.location.href.indexOf('list=WL') < 0) {
a = '//youtube.076.ne.jp/watch?' + window.parent.location.href.split('?')[1];
window.location.replace(a);
}
}, 10);