一键跳转到github的dev编辑器页面

一键跳转到github的dev编辑器页面!

  1. // ==UserScript==
  2. // @name 一键跳转到github的dev编辑器页面
  3. // @namespace https://github.com/xxxily
  4. // @homepage https://github.com/xxxily
  5. // @version 0.0.2
  6. // @description 一键跳转到github的dev编辑器页面!
  7. // @author xxxily
  8. // @match https://github.com/*
  9. // @run-at document-start
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. /**
  14. * 元素监听器
  15. * @param selector -必选
  16. * @param fn -必选,元素存在时的回调
  17. * @param shadowRoot -可选 指定监听某个shadowRoot下面的DOM元素
  18. * 参考:https://javascript.ruanyifeng.com/dom/mutationobserver.html
  19. */
  20. function ready (selector, fn, shadowRoot) {
  21. const win = window
  22. const docRoot = shadowRoot || win.document.documentElement
  23. if (!docRoot) return false
  24. const MutationObserver = win.MutationObserver || win.WebKitMutationObserver
  25. const listeners = docRoot._MutationListeners || []
  26.  
  27. function $ready (selector, fn) {
  28. // 储存选择器和回调函数
  29. listeners.push({
  30. selector: selector,
  31. fn: fn
  32. })
  33.  
  34. /* 增加监听对象 */
  35. if (!docRoot._MutationListeners || !docRoot._MutationObserver) {
  36. docRoot._MutationListeners = listeners
  37. docRoot._MutationObserver = new MutationObserver(() => {
  38. for (let i = 0; i < docRoot._MutationListeners.length; i++) {
  39. const item = docRoot._MutationListeners[i]
  40. check(item.selector, item.fn)
  41. }
  42. })
  43.  
  44. docRoot._MutationObserver.observe(docRoot, {
  45. childList: true,
  46. subtree: true
  47. })
  48. }
  49.  
  50. // 检查节点是否已经在DOM中
  51. check(selector, fn)
  52. }
  53.  
  54. function check (selector, fn) {
  55. const elements = docRoot.querySelectorAll(selector)
  56. for (let i = 0; i < elements.length; i++) {
  57. const element = elements[i]
  58. element._MutationReadyList_ = element._MutationReadyList_ || []
  59. if (!element._MutationReadyList_.includes(fn)) {
  60. element._MutationReadyList_.push(fn)
  61. fn.call(element, element)
  62. }
  63. }
  64. }
  65.  
  66. const selectorArr = Array.isArray(selector) ? selector : [selector]
  67. selectorArr.forEach(selector => $ready(selector, fn))
  68. }
  69.  
  70. ready('a.btn', function (element) {
  71. if(!document.getElementById('goToDev') && element.innerText === 'Go to file'){
  72. const devBtn = document.createElement("a")
  73. devBtn.innerText = "Go to Dev"
  74. devBtn.id = "goToDev"
  75. devBtn.target = "_blank"
  76. devBtn.href = window.location.href.replace("github.com", "github.dev")
  77. devBtn.className = element.className
  78. element.parentNode.insertBefore(devBtn, element)
  79. }
  80. })
  81.  
  82. // 旧的实现方式,需要document-end才能获取到元素,偶尔会有失败的情况,所以改成ready方式
  83. // if(!document.getElementById('goToDev')){
  84. // const devBtn = document.createElement("a")
  85. // devBtn.innerText = "Go to Dev"
  86. // devBtn.id = "goToDev"
  87. // devBtn.target = "_blank"
  88. // devBtn.href = window.location.href.replace("github.com", "github.dev")
  89.  
  90. // const btns = document.querySelectorAll("a.btn")
  91. // btns.forEach(btn => {
  92. // if(btn.innerText === "Go to file"){
  93. // devBtn.className = btn.className
  94. // btn.parentNode.insertBefore(devBtn, btn)
  95. // }
  96. // })
  97. // }

QingJ © 2025

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