IdlePixel+ Plugin Paneller

Library which creates a modal for opening plugin panels.

此脚本不应被直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/491983/1368960/IdlePixel%2B%20Plugin%20Paneller.js

脚本作者
Lux-Ferre
版本
1.1.0
创建日期
2024-04-08
最近更新
2024-04-30
许可证
MIT

Idle-Pixel Plugin Paneller

Creates a modal populated with buttons to open panels.

After requiring the library, just use the following method call within onLogin()

Paneller.registerPanel(panelName, "Display Name", function/method)

function is an optional parameter defaulting to the standard panel opening. When a function is given, it will be called when the button is clicked in the modal.

Examples:

Paneller.registerPanel(myScriptPanel, "My Script - Panel"

Paneller.registerPanel(myScriptModal, "My Script - Modal", IdlePixelPlus.plugins.myscript.openModal)