您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Load the WEM from other Webtiles sites as well.
- // ==UserScript==
- // @name Webtiles Extend Module Loader
- // @description Load the WEM from other Webtiles sites as well.
- // @version 1.2
- // @author ASCIIPhilia
- // @match https://crawl.kelbi.org/*
- // @match http://crawl.akrasiac.org:8080/*
- // @match https://underhound.eu:8080/*
- // @match https://cbro.berotato.org:8443/*
- // @match http://lazy-life.ddo.jp:8080/*
- // @match https://crawl.xtahua.com/*
- // @match https://crawl.project357.org/*
- // @match http://joy1999.codns.com:8081/*
- // @match https://crawl.nemelex.cards/*
- // @match https://cnc.abstr.net/*
- // @namespace https://greasyfork.org/users/663409
- // ==/UserScript==
- (function () {
- 'use strict';
- function waitFor(checkFunction, checkDelay = 100) {
- return new Promise(resolve => {
- let i = setInterval(_ => {
- try {
- let check = checkFunction();
- check ? clearInterval(i) || resolve(check) : void 0
- } catch (e) {}
- }, checkDelay);
- });
- }
- !async function () {
- await waitFor(_ => unsafeWindow.$, 100);
- $.getScript("https://dcssem.abstr.net/webtiles_module/release/1.0/script.js");
- }();
- })();