Config_Manager

设置获取配置的APIs

当前为 2023-10-05 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/476522/1259956/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. config = {};
  25. register = ({name, default: def, type = "other", prompts, tips: ipt, input: func = prompt, callback: listener = Function.prototype}) => {
  26. let val = GM_getValue(name, def);
  27. config[name] = val;
  28. if (int_family.includes(type)) {
  29. const judge = (type === 'uint') ? (s => (s|0) < 0) : (()=>false);
  30. if (input === prompt) {
  31. input = () => {
  32. let p;
  33. do {p = prompt(ipt);} while(isNaN(p) || judge(p));
  34. return p;
  35. };
  36. }
  37. type = 'other';
  38. }
  39. if (type === 'bool') {
  40. let cont;
  41. const reg = () => cont = GM_registerMenuCommand(boolean_prefix[val | 0] + prompts, () => GM_setValue(name, !val));
  42. GM_addValueChangeListener(name, (_1, ov, newval) => {
  43. config[name] = val = newval;
  44. GM_unregisterMenuCommand(cont);
  45. reg();
  46. listener(name, ov, newval, cont);
  47. });
  48. reg();
  49. } else if (type === "other") {
  50. const cont = GM_registerMenuCommand(prompts, () => GM_setValue(name, func()));
  51. GM_addValueChangeListener(name, (_1, ov, newval) => (config[name] = newval, listener(name, ov, newval, cont)));
  52. }
  53. console.debug(type, name, "\nRegistered!");
  54. };
  55. })();