Greasy Fork is available in English.

CAI Universal Toolbelt Menu

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

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @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);
}