IQAMakerRemote

给轻文的编辑器添加指令功能

Version vom 29.08.2018. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @icon         http://www.iqing.com/iriya/img/人物.0a09b6d.png
// @name         IQAMakerRemote
// @namespace    http://www.iqing.com/
// @version      0.888
// @description  给轻文的编辑器添加指令功能
// @author       Ts8zs
// @include      *//www.iqing.com/preview.html*
// @update       https://greasyfork.org/scripts/371697-iqamakerremote/code/IQAMakerRemote.user.js
// ==/UserScript==

//将下面这段代码放进预览的F12控制台执行即可使用指令控制预览
document.getElementsByClassName('nav')[0].innerHTML +=
    `<div style="position:fixed;z-index:100000;right:0;bottom:0;left:0;">
    <datalist id="iqacmd">
        <option>@jump</option>
        <option>@in</option>
        <option>@sel</option>
        <option>@clear</option>
        <option>@action</option>
        <option>@play</option>
        <option>@stop</option>
        <option>@add</option>
        <option>@break</option>
        <option>@random</option>
    </datalist>
    <input id="command" list="iqacmd" style="width:100%;font-size: 24px;" onchange="previewIframe.contentWindow.game.logic.Stage_exec.insert(command.value);command.value = '';" placeholder="输入指令回车执行">
    `;
document.domain = "iqing.com";