Config_Manager

设置获取配置的APIs

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

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/476522/1262128/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. const 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, init = false}) => {
  25. let val = GM_getValue(name, def);
  26. config[name] = val;
  27. if (typeof init === 'function') init(name, val);
  28. if (int_family.includes(type)) {
  29. const judge = (type === 'uint') ? (s => (s|0) < 0) : (()=>false);
  30. if (func === prompt) {
  31. func = () => {
  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. if (true == init) listener(name, val, val, cont);
  43. GM_addValueChangeListener(name, (_1, ov, newval) => {
  44. config[name] = val = newval;
  45. GM_unregisterMenuCommand(cont);
  46. reg();
  47. listener(name, ov, newval, cont);
  48. });
  49. reg();
  50. } else if (type === "other") {
  51. const cont = GM_registerMenuCommand(prompts, () => GM_setValue(name, func()));
  52. if (true == init) listener(name, val, val, cont);
  53. GM_addValueChangeListener(name, (_1, ov, newval) => (config[name] = newval, listener(name, ov, newval, cont)));
  54. }
  55. console.debug(type, name, "\nRegistered!");
  56. };
  57. })();