NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name dood.la Bigscreen // @description Redirect to iframe source // @version 0.1 // @author Fury Zenblade#1337 // @match https://dood.la/d/* // @run-at document-start // @icon https://www.google.com/s2/favicons?domain=dood.la // @grant none // @license MIT // @updateURL https://openuserjs.org/meta/FuryZen/dood.la_Bigscreen.meta.js // ==/UserScript== (function() { var url = window.location.pathname; var src = url.substr(3, url.length); location.replace("https://dood.la/e/" + src); })();