Shared library for TankTrouble
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/482092/1294883/TankTrouble%20Util%20Library.js
// ==UserScript==
// @name TankTrouble Util Library
// @author commander
// @namespace https://github.com/asger-finding
// @version 0.0.1
// @license GPL-3.0
// @description Shared library for TankTrouble
// @match *://*.tanktrouble.com/*
// @grant none
// @run-at document-start
// @noframes
// ==/UserScript==
/* jshint esversion: 8 */
/**
* Fires when the document is readyState `interactive` or `complete`
* @returns Promise that resolves upon content loaded
*/
const contentLoaded = () => new Promise(promiseResolve => {
if (document.readyState === 'interactive' || document.readyState === 'complete') promiseResolve();
else document.addEventListener('DOMContentLoaded', () => promiseResolve());
});
/**
* Fires when the `main()` function is done on TankTrouble.
* @returns Promise that resolves upon content initialized
*/
const contentInitalized = () => new Promise(promiseResolve => {
contentLoaded().then(() => {
const contentInitHook = Content.init;
Reflect.defineProperty(Content, 'init', {
/**
* Resolve after Content.init call finishes
*
* @param args Arguments to pass
*/
value: (...args) => {
contentInitHook(...args);
promiseResolve();
}
});
});
});