Config_Manager

设置获取配置的APIs

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

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.gf.qytechs.cn/scripts/476522/1262004/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 (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. if (init) listener(name, val, val, cont);
  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. if (init) listener(name, val, val, cont);
  52. GM_addValueChangeListener(name, (_1, ov, newval) => (config[name] = newval, listener(name, ov, newval, cont)));
  53. }
  54. console.debug(type, name, "\nRegistered!");
  55. };
  56. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址