Greasy Fork is available in English.

CAI Universal Toolbelt Menu

Reusable menu structure for various c.ai TM scripts that require a menu

此脚本不应被直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/466064/1190599/CAI%20Universal%20Toolbelt%20Menu.js

脚本作者
notdoingthateither
版本
1.1
创建日期
2023-05-11
最近更新
2023-05-14
许可证
MIT

Usage:

const btn = CAIToolMenu.newButton();
btn.innerHTML = 'Do';
btn.onclick = () => {
  console.log('It's doing stuff');

  // optional hide menu after button pressed
  CAIToolMenu.showMenu(false);
}