Greasy Fork 还支持 简体中文。

GitHub To DeepWiKi

GitHub to DeepWiKi.Supports desktop and mobile devices

目前為 2025-05-17 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name GitHub To DeepWiKi
  3. // @name:zh-CN GitHub 跳转到 DeepWiKi
  4. // @description GitHub to DeepWiKi.Supports desktop and mobile devices
  5. // @description:zh-CN GitHub 存储库跳转到 DeepWiKi,支持电脑桌面端和移动端
  6. // @author 人民的勤务员 <china.qinwuyuan@gmail.com>
  7. // @namespace https://github.com/ChinaGodMan/UserScripts
  8. // @supportURL https://github.com/ChinaGodMan/UserScripts/issues
  9. // @homepageURL https://github.com/ChinaGodMan/UserScripts
  10. // @license MIT
  11. // @match https://github.com/*
  12. // @icon https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/deepwiki.png
  13. // @compatible chrome
  14. // @compatible firefox
  15. // @compatible edge
  16. // @compatible opera
  17. // @compatible safari
  18. // @compatible kiwi
  19. // @compatible qq
  20. // @compatible via
  21. // @compatible brave
  22. // @version 2025.5.17.1
  23. // ==/UserScript==
  24.  
  25. const DESKTOP_SELECTOR = '.mt-2'
  26. const MOBILE_SELECTOR = '#responsive-meta-container .d-flex.gap-2.mt-n3.mb-3.flex-wrap'
  27. const INITIAL_DELAY = 50
  28. const MAX_DELAY = 2000
  29. const MAX_ATTEMPTS = 15
  30. let checkTimer = null
  31. let currentDelay = INITIAL_DELAY
  32. let attemptCount = 0
  33.  
  34. function checkAndInsert() {
  35. if (checkTimer) {
  36. clearTimeout(checkTimer)
  37. checkTimer = null
  38. }
  39.  
  40. insertCustomElement(document.querySelector(MOBILE_SELECTOR), 'beforeend')
  41. const elements = document.querySelectorAll(DESKTOP_SELECTOR)
  42. if (elements.length >= 2) {
  43. const target = elements[elements.length - 2]
  44. if (insertCustomElement(target)) {
  45. console.log('插入成功,终止检测')
  46. return true
  47. }
  48. }
  49.  
  50. if (attemptCount >= MAX_ATTEMPTS) {
  51. console.warn(`已达到最大尝试次数 ${MAX_ATTEMPTS} 次`)
  52. return false
  53. }
  54.  
  55. currentDelay = Math.min(currentDelay * 1.5, MAX_DELAY)
  56. attemptCount++
  57.  
  58. checkTimer = setTimeout(() => {
  59. checkAndInsert()
  60. }, currentDelay)
  61.  
  62. return false
  63. }
  64.  
  65. function insertCustomElement(target) {
  66. if (!target?.parentNode) return false
  67.  
  68. try {
  69. const deepWikiSvg = '<svg height="16" width="16" data-view-component="true" class="octicon octicon-link flex-shrink-0 mr-2" xmlns="http://www.w3.org/2000/svg" viewBox="110 110 460 500"><path class="" d="M418.73,332.37c9.84-5.68,22.07-5.68,31.91,0l25.49,14.71c.82.48,1.69.8,2.58,1.06.19.06.37.11.55.16.87.21,1.76.34,2.65.35.04,0,.08.02.13.02.1,0,.19-.03.29-.04.83-.02,1.64-.13,2.45-.32.14-.03.28-.05.42-.09.87-.24,1.7-.59,2.5-1.03.08-.04.17-.06.25-.1l50.97-29.43c3.65-2.11,5.9-6.01,5.9-10.22v-58.86c0-4.22-2.25-8.11-5.9-10.22l-50.97-29.43c-3.65-2.11-8.15-2.11-11.81,0l-50.97,29.43c-.08.04-.13.11-.2.16-.78.48-1.51,1.02-2.15,1.66-.1.1-.18.21-.28.31-.57.6-1.08,1.26-1.51,1.97-.07.12-.15.22-.22.34-.44.77-.77,1.6-1.03,2.47-.05.19-.1.37-.14.56-.22.89-.37,1.81-.37,2.76v29.43c0,11.36-6.11,21.95-15.95,27.63-9.84,5.68-22.06,5.68-31.91,0l-25.49-14.71c-.82-.48-1.69-.8-2.57-1.06-.19-.06-.37-.11-.56-.16-.88-.21-1.76-.34-2.65-.34-.13,0-.26.02-.4.02-.84.02-1.66.13-2.47.32-.13.03-.27.05-.4.09-.87.24-1.71.6-2.51,1.04-.08.04-.16.06-.24.1l-50.97,29.43c-3.65,2.11-5.9,6.01-5.9,10.22v58.86c0,4.22,2.25,8.11,5.9,10.22l50.97,29.43c.08.04.17.06.24.1.8.44,1.64.79,2.5,1.03.14.04.28.06.42.09.81.19,1.62.3,2.45.32.1,0,.19.04.29.04.04,0,.08-.02.13-.02.89,0,1.77-.13,2.65-.35.19-.04.37-.1.56-.16.88-.26,1.75-.59,2.58-1.06l25.49-14.71c9.84-5.68,22.06-5.68,31.91,0,9.84,5.68,15.95,16.27,15.95,27.63v29.43c0,.95.15,1.87.37,2.76.05.19.09.37.14.56.25.86.59,1.69,1.03,2.47.07.12.15.22.22.34.43.71.94,1.37,1.51,1.97.1.1.18.21.28.31.65.63,1.37,1.18,2.15,1.66.07.04.13.11.2.16l50.97,29.43c1.83,1.05,3.86,1.58,5.9,1.58s4.08-.53,5.9-1.58l50.97-29.43c3.65-2.11,5.9-6.01,5.9-10.22v-58.86c0-4.22-2.25-8.11-5.9-10.22l-50.97-29.43c-.08-.04-.16-.06-.24-.1-.8-.44-1.64-.8-2.51-1.04-.13-.04-.26-.05-.39-.09-.82-.2-1.65-.31-2.49-.33-.13,0-.25-.02-.38-.02-.89,0-1.78.13-2.66.35-.18.04-.36.1-.54.15-.88.26-1.75.59-2.58,1.07l-25.49,14.72c-9.84,5.68-22.07,5.68-31.9,0-9.84-5.68-15.95-16.27-15.95-27.63s6.11-21.95,15.95-27.63Z" style="fill: rgb(33, 193, 154);"></path><path d="M141.09,317.65l50.97,29.43c1.83,1.05,3.86,1.58,5.9,1.58s4.08-.53,5.9-1.58l50.97-29.43c.08-.04.13-.11.2-.16.78-.48,1.51-1.02,2.15-1.66.1-.1.18-.21.28-.31.57-.6,1.08-1.26,1.51-1.97.07-.12.15-.22.22-.34.44-.77.77-1.6,1.03-2.47.05-.19.1-.37.14-.56.22-.89.37-1.81.37-2.76v-29.43c0-11.36,6.11-21.95,15.96-27.63s22.06-5.68,31.91,0l25.49,14.71c.82.48,1.69.8,2.57,1.06.19.06.37.11.56.16.87.21,1.76.34,2.64.35.04,0,.09.02.13.02.1,0,.19-.04.29-.04.83-.02,1.65-.13,2.45-.32.14-.03.28-.05.41-.09.87-.24,1.71-.6,2.51-1.04.08-.04.16-.06.24-.1l50.97-29.43c3.65-2.11,5.9-6.01,5.9-10.22v-58.86c0-4.22-2.25-8.11-5.9-10.22l-50.97-29.43c-3.65-2.11-8.15-2.11-11.81,0l-50.97,29.43c-.08.04-.13.11-.2.16-.78.48-1.51,1.02-2.15,1.66-.1.1-.18.21-.28.31-.57.6-1.08,1.26-1.51,1.97-.07.12-.15.22-.22.34-.44.77-.77,1.6-1.03,2.47-.05.19-.1.37-.14.56-.22.89-.37,1.81-.37,2.76v29.43c0,11.36-6.11,21.95-15.95,27.63-9.84,5.68-22.07,5.68-31.91,0l-25.49-14.71c-.82-.48-1.69-.8-2.58-1.06-.19-.06-.37-.11-.55-.16-.88-.21-1.76-.34-2.65-.35-.13,0-.26.02-.4.02-.83.02-1.66.13-2.47.32-.13.03-.27.05-.4.09-.87.24-1.71.6-2.51,1.04-.08.04-.16.06-.24.1l-50.97,29.43c-3.65,2.11-5.9,6.01-5.9,10.22v58.86c0,4.22,2.25,8.11,5.9,10.22Z" style="fill: rgb(57, 105, 202);"></path><path class="" d="M396.88,484.35l-50.97-29.43c-.08-.04-.17-.06-.24-.1-.8-.44-1.64-.79-2.51-1.03-.14-.04-.27-.06-.41-.09-.81-.19-1.64-.3-2.47-.32-.13,0-.26-.02-.39-.02-.89,0-1.78.13-2.66.35-.18.04-.36.1-.54.15-.88.26-1.76.59-2.58,1.07l-25.49,14.72c-9.84,5.68-22.06,5.68-31.9,0-9.84-5.68-15.96-16.27-15.96-27.63v-29.43c0-.95-.15-1.87-.37-2.76-.05-.19-.09-.37-.14-.56-.25-.86-.59-1.69-1.03-2.47-.07-.12-.15-.22-.22-.34-.43-.71-.94-1.37-1.51-1.97-.1-.1-.18-.21-.28-.31-.65-.63-1.37-1.18-2.15-1.66-.07-.04-.13-.11-.2-.16l-50.97-29.43c-3.65-2.11-8.15-2.11-11.81,0l-50.97,29.43c-3.65,2.11-5.9,6.01-5.9,10.22v58.86c0,4.22,2.25,8.11,5.9,10.22l50.97,29.43c.08.04.17.06.25.1.8.44,1.63.79,2.5,1.03.14.04.29.06.43.09.8.19,1.61.3,2.43.32.1,0,.2.04.3.04.04,0,.09-.02.13-.02.88,0,1.77-.13,2.64-.34.19-.04.37-.1.56-.16.88-.26,1.75-.59,2.57-1.06l25.49-14.71c9.84-5.68,22.06-5.68,31.91,0,9.84,5.68,15.95,16.27,15.95,27.63v29.43c0,.95.15,1.87.37,2.76.05.19.09.37.14.56.25.86.59,1.69,1.03,2.47.07.12.15.22.22.34.43.71.94,1.37,1.51,1.97.1.1.18.21.28.31.65.63,1.37,1.18,2.15,1.66.07.04.13.11.2.16l50.97,29.43c1.83,1.05,3.86,1.58,5.9,1.58s4.08-.53,5.9-1.58l50.97-29.43c3.65-2.11,5.9-6.01,5.9-10.22v-58.86c0-4.22-2.25-8.11-5.9-10.22Z" style="fill: rgb(2, 148, 222);"></path></svg>'
  70. const newDiv = document.createElement('div')
  71. let url = window.location.href.replace('github.com', 'deepwiki.com')
  72. newDiv.className = 'mt-2'
  73. newDiv.innerHTML = `
  74. <a href="${url}" target="_blank" class="Link Link--muted" id="myCustomLink">
  75. ${deepWikiSvg}
  76. <strong style="color: #2583f1;">DeepWiki</strong>
  77. </a>
  78. `
  79. target.insertAdjacentElement('afterend', newDiv)
  80. return document.contains(newDiv)
  81. } catch (error) {
  82. console.error('插入失败:', error)
  83. return false
  84. }
  85. }
  86.  
  87. function observeUrlChanges(callback, delay = 10) {
  88. let lastUrl = location.href
  89. const observer = new MutationObserver(() => {
  90. const url = location.href
  91. if (url !== lastUrl) {
  92. lastUrl = url
  93. setTimeout(() => {
  94. callback()
  95. }, delay)
  96. }
  97. })
  98. observer.observe(document, { subtree: true, childList: true })
  99. return observer
  100. }
  101. observeUrlChanges(checkAndInsert)
  102. checkAndInsert()