Greasy Fork is available in English.

StarSea星海

洛克王国全屏、防止误操作等

// ==UserScript==
// @name         StarSea星海
// @namespace    https://17roco.qq.com/h5/
// @version      0.2
// @description  洛克王国全屏、防止误操作等
// @author       星海
// @match        https://*17roco.qq.com/h5/*
// ==/UserScript==

(async function() {
    'use strict';

    const appContainer = document.createElement('div');
    appContainer.id = 'app';
    document.body.appendChild(appContainer);
  let myStyle = document.createElement('style');
  myStyle.type = 'text/css';
    async function loadCSS(url) {
        const response = await fetch(url);
        const cssText = await response.text();
    myStyle.innerHTML =cssText;
    document.head.appendChild(myStyle);
    }
    async function loadJS(url) {
        const response = await fetch(url);
        eval(await response.text()); 
    }
    await loadCSS('https://vip.123pan.cn/1843426599/starsea/index.css');
    await loadJS('https://vip.123pan.cn/1843426599/starsea/index.js');
})();