dwarkp / Dwar kp utils

// ==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...
})();