NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @description stop autoplay on Hooktube URLs // @name HooktubeNoAutoplay // @include *hooktube.com/watch* // @author Unaligned Coder // @version 0.1.7 // @license CC-BY-NC-SA-4.0; https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode // @license GPL-3.0+; http://www.gnu.org/licenses/gpl-3.0.txt // @namespace https://github.com/unalignedcoder/Hooktube-No-Autoplay-Userscript/ // @downloadURL https://github.com/unalignedcoder/Hooktube-No-Autoplay-Userscript/raw/master/hooktube-no-autoplay.user.js // @run-at document-start // @grant none // ==/UserScript== // Copyright 2018 Unaligned Coder // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. function concat_ht(str) { str=str.concat("&autoplay=0"); return str; } let loc = window.location.href; if (!loc.endsWith("&autoplay=0")){loc = concat_ht(loc);} if (window.location.href !== loc) { window.location.href = loc; }