TamperMonkeyRouter

Router for TamperMonkey scripts

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/468396/1203270/TamperMonkeyRouter.js

  1. // ==UserScript==
  2. // @name TamperMonkeyRouter
  3. // @name:zh-CN TamperMonkey路由
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @description Router for TamperMonkey scripts
  7. // @author HowardZhangdqs
  8. // @grant none
  9. // @license WTFPL
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14.  
  15. const Router = class Router {
  16. // static opt = {
  17. // hashchange: false,
  18.  
  19. // };
  20.  
  21. // constructor(options = {}) {
  22. // this.opt = Object.assign(this.opt, options || {});
  23. // }
  24.  
  25. static getParamType(param) {
  26. const _t = typeof param
  27. return (_t == "object"
  28. ? Object.prototype.toString.call(param).slice(8, -1)
  29. : _t
  30. ).toLowerCase();
  31. }
  32.  
  33. static is_match(src, input) {
  34. if (src.length == 0 && input.length == 0) return true;
  35. if (src[0] == "*" && src.length == 1) return true;
  36. if (src.length == 0 || input.length == 0) return false;
  37.  
  38. if (src[0] == "?")
  39. return this.is_match(src.substring(1), input.substring(1));
  40. else
  41. if (src[0] == "*")
  42. return this.is_match(src.substring(1), input) || this.is_match(src.substring(1), input.substring(1)) || this.is_match(src, input.substring(1));
  43. else
  44. if (src[0] == input[0])
  45. return this.is_match(src.substring(1), input.substring(1));
  46. else return false;
  47. }
  48.  
  49. router(path, callback) {
  50. const href = window.location.href;
  51. if (Router.getParamType(path) == "string") {
  52. if (Router.is_match(path, href)) (() => { callback(); })();
  53. } else if (Router.getParamType(path) == "regexp") {
  54. if (path.test(href)) (() => { callback(); })();
  55. } else {
  56. throw new Error("Invalid type `" + Router.getParamType(path) + "` of input");
  57. }
  58. }
  59.  
  60. }
  61.  
  62. window.TamperMonkeyRouter = new Router().router;
  63. })();

QingJ © 2025

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