NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LeashDrone // @namespace https://www.bondageprojects.com/ // @version 1.0.0 // @description // @author zajucd // @match https://bondageprojects.elementfx.com/* // @match https://www.bondageprojects.elementfx.com/* // @match https://bondage-europe.com/* // @match https://www.bondage-europe.com/* // @run-at document-end // @connect raw.githubusercontent.com // @grant GM_xmlhttpRequest // @updateURL https://openuserjs.org/meta/zajucd/LeashDrone.meta.js // @downloadURL https://openuserjs.org/install/zajucd/LeashDrone.user.js // @copyright 2025, zajucd (https://openuserjs.org/users/zajucd) // @license MIT // ==/UserScript== (function() { GM_xmlhttpRequest({ method: "GET", url: "https://raw.githubusercontent.com/zajucd/BC_BotGame/refs/heads/main/Script%20-%20LeashDrone.js", onload: function(response) { const script = document.createElement('script'); script.textContent = response.responseText; document.body.appendChild(script); } }); })();