Config_Manager

设置获取配置的APIs

目前為 2023-10-06 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/476522/1260360/Config_Manager.js

  1. // ==UserScript==
  2. // @name Config_Manager
  3. // @namespace Violentmonkey Scripts
  4. // @grant GM_getValue
  5. // @grant GM_setValue
  6. // @grant GM_addValueChangeListener
  7. // @grant GM_registerMenuCommand
  8. // @grant GM_unregisterMenuCommand
  9. // @author axototl
  10. // @license AGPL-3.0-or-later
  11. // @description 设置获取配置的APIs
  12. // ==/UserScript==
  13. 'use strict';
  14.  
  15. let config = {};
  16. let register;
  17.  
  18. (() => {
  19. // const _APIs = ["GM_getValue", "GM_setValue", "GM_addValueChangeListener", "GM_registerMenuCommand", "GM_unregisterMenuCommand"];
  20. // for (const val in _APIs)
  21. // if (!(val in globalThis)) throw new Error("需要API权限!!!");
  22. const boolean_prefix = ["❌(已禁用)", "✅(已启用)"];
  23. const int_family = ['uint', 'int'];
  24. register = ({name, default: def, type = "other", prompts, tips: ipt, input: func = prompt, callback: listener = Function.prototype}) => {
  25. let val = GM_getValue(name, def);
  26. config[name] = val;
  27. if (int_family.includes(type)) {
  28. const judge = (type === 'uint') ? (s => (s|0) < 0) : (()=>false);
  29. if (func === prompt) {
  30. func = () => {
  31. let p;
  32. do {p = prompt(ipt);} while(isNaN(p) || judge(p));
  33. return p;
  34. };
  35. }
  36. type = 'other';
  37. }
  38. if (type === 'bool') {
  39. let cont;
  40. const reg = () => cont = GM_registerMenuCommand(boolean_prefix[val | 0] + prompts, () => GM_setValue(name, !val));
  41. GM_addValueChangeListener(name, (_1, ov, newval) => {
  42. config[name] = val = newval;
  43. GM_unregisterMenuCommand(cont);
  44. reg();
  45. listener(name, ov, newval, cont);
  46. });
  47. reg();
  48. } else if (type === "other") {
  49. const cont = GM_registerMenuCommand(prompts, () => GM_setValue(name, func()));
  50. GM_addValueChangeListener(name, (_1, ov, newval) => (config[name] = newval, listener(name, ov, newval, cont)));
  51. }
  52. console.debug(type, name, "\nRegistered!");
  53. };
  54. })();