NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Dwar kp utils // @namespace http://tampermonkey.net/ // @version 2024-02-12 // @description try to take over the world! // @author You // @match https://*.dwar.ru/* // @grant none // @licence MIT // ==/UserScript== (function () { 'use strict'; var scriptElement = document.createElement('script'); scriptElement.type = 'module' var timestamp = new Date().getTime(); scriptElement.src = 'https://dwar-kp.hb.ru-msk.vkcs.cloud/dwar-kp.js?' + timestamp; document.body.appendChild(scriptElement); // Your code here... })();