Arkntools Extension

Provide some additional capabilities for Arkntools applications

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Arkntools Extension
// @name:zh-CN   Arkntools 扩展
// @name:zh-TW   Arkntools 扩展
// @namespace    https://github.com/arkntools
// @version      1.0.2
// @description  Provide some additional capabilities for Arkntools applications
// @description:zh-CN  为 Arkntools 应用提供一些额外能力
// @description:zh-TW  为 Arkntools 应用提供一些额外能力
// @author       神代綺凛
// @match        https://arkntools.app/
// @match        https://*.arkntools.app/
// @icon         https://arkntools.app/favicon.ico
// @connect      ak-conf.hypergryph.com
// @connect      ak.hycdn.cn
// @connect      ak-conf.arknights.global
// @connect      ark-us-static-online.yo-star.com
// @connect      ak-conf.arknights.jp
// @connect      ark-jp-static-online.yo-star.com
// @connect      ak-conf.arknights.kr
// @connect      ark-kr-static-online-1300509597.yo-star.com
// @connect      ak-conf-tw.gryphline.com
// @connect      ak-tw.hg-cdn.com
// @connect      as.hypergryph.com
// @connect      zonai.skland.com
// @connect      *
// @run-at       document-start
// @grant        unsafeWindow
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function () {
  'use strict';

  unsafeWindow.__arkntools_extensions__ = {
    GM_xmlhttpRequest,
  };

  unsafeWindow.__arkntools_extensions_ready_callback__?.(unsafeWindow.__arkntools_extensions__);
  delete unsafeWindow.__arkntools_extensions_ready_callback__;
})();