NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name down // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://*.xvideos.com/* // @match https://*.pornhub.com/* // @match https://*.xnxx.com/* // @grant none // @license MIT // ==/UserScript== (function () { var hosts = { 'fr.xvideos.com': 'Xvideos', 'www.xvideos.com': 'Xvideos', 'fr.xnxx.com': 'XnXX', 'www.xnxx.com': 'XnXX', 'fr.pornhub.com': 'PornHub', 'www.pornhub.com': 'PornHub' }; var encoded_url = encodeURIComponent(location.href.replace('//fr.', '//wwww.')); var url = 'https://www.tubeoffline.com/downloadFrom.php?host=' + hosts[location.host] + '&video=' + encoded_url; // location.href = url; })();