知乎页面净化

🌵页面全面净化|📈沉浸阅读|修改自极简知乎 https://gf.qytechs.cn/zh-CN/scripts/37823-%E6%9E%81%E7%AE%80%E7%9F%A5%E4%B9%8E

  1. // ==UserScript==
  2. // @name 知乎页面净化
  3. // @version 1.0.10
  4. // @author zy
  5. // @namespace
  6. // @supportURL
  7. // @description 🌵页面全面净化|📈沉浸阅读|修改自极简知乎 https://gf.qytechs.cn/zh-CN/scripts/37823-%E6%9E%81%E7%AE%80%E7%9F%A5%E4%B9%8E
  8. // @match *://www.zhihu.com/question/*
  9. // @match *://www.zhihu.com/search*
  10. // @match *://www.zhihu.com/hot
  11. // @match *://www.zhihu.com/follow
  12. // @match *://www.zhihu.com/
  13. // @match *://www.zhihu.com/signin*
  14. // @run-at document-end
  15. // @namespace
  16. // ==/UserScript==
  17. ; (function () {
  18. 'use strict'
  19. // 区分搜索问答页面
  20. let webUrl = window.location.pathname
  21. let pageType
  22. if (webUrl.indexOf('question') >= 0) {
  23. pageType = 'question'
  24. } else if (webUrl.indexOf('search') >= 0) {
  25. pageType = 'search'
  26. } else if (webUrl.indexOf('hot') >= 0 || webUrl.indexOf('follow') >= 0 || window.location.href.includes("zhihu.com")) {
  27. pageType = 'hot'
  28. } else if (webUrl.indexOf('signin') >= 0) {
  29. pageType = 'signin'
  30. }
  31. // 用GitHub的图标替换
  32. let fake_title = 'GitHub'
  33. // icon也改了
  34. let fake_icon = 'https://github.githubassets.com/favicon.ico'
  35. let link =
  36. document.querySelector("link[rel*='icon']") ||
  37. document.createElement('link')
  38. window.onload = function () {
  39. const sConfig = window.localStorage
  40. if (sConfig.fakeTitle === undefined) {
  41. sConfig.fakeTitle = 'true'
  42. sConfig.showQuestion = 'true'
  43. }
  44. // 改下标题
  45. // if (sConfig.fakeTitle === 'true') {
  46. // window.document.title = fake_title
  47. // link.type = 'image/x-icon'
  48. // link.rel = 'shortcut icon'
  49. // link.href = fake_icon
  50. // document.getElementsByTagName('head')[0].appendChild(link)
  51. // }
  52. console.log(pageType)
  53. switch (pageType) {
  54. case 'question':
  55. fixQuestionPage()
  56. break
  57. case 'search':
  58. fixSearchPage()
  59. break
  60. case 'hot':
  61. fixHomePage()
  62. break
  63. case 'signin':
  64. addHotList()
  65. break
  66. }
  67. // this.document.addEventListener('keydown', function (e) {
  68. // console.log('e', e)
  69. // if (e.ctrlKey && e.altKey && e.key === 't') {
  70. // showFakeTitle()
  71. // } else if (e.ctrlKey && e.shiftKey && e.key === 'q') {
  72. // showQuestion()
  73. // }
  74. // })
  75. }
  76. function addHotList() {
  77. let signButton = document.querySelector('.SignFlow-submitButton')
  78. if (signButton) {
  79. let hotButton = signButton.cloneNode(false)
  80. let parent = signButton.parentNode;
  81. parent.appendChild(hotButton)
  82. hotButton.innerHTML = '不想登录(不可用),去热榜转转'
  83. hotButton.onclick = function () {
  84. location.href = 'https://www.zhihu.com/billboard'
  85. }
  86. }
  87. }
  88. function showFakeTitle() {
  89. const sConfig = window.localStorage
  90. if (sConfig.fakeTitle === 'true') {
  91. sConfig.fakeTitle = 'false'
  92. alert('不伪装标题栏')
  93. } else {
  94. sConfig.fakeTitle = 'true'
  95. alert('伪装标题栏')
  96. }
  97. window.location.reload()
  98. }
  99. function showQuestion() {
  100. const sConfig = window.localStorage
  101. if (sConfig.showQuestion === 'true') {
  102. sConfig.showQuestion = 'false'
  103. alert('显示提问标题')
  104. } else {
  105. sConfig.showQuestion = 'true'
  106. alert('隐藏提问标题')
  107. }
  108. window.location.reload()
  109. }
  110. function fixQuestionPage() {
  111. const sConfig = window.localStorage
  112. let cssFix = document.createElement('style')
  113. // 吸底的评论栏
  114. cssFix.innerHTML += '.RichContent-actions{bottom:auto !important;}'
  115. // 直接屏蔽顶部问题相关
  116. //if (sConfig.showQuestion === 'true') {
  117. // cssFix.innerHTML += '.QuestionHeader-footer{display:none !important;}'
  118. // cssFix.innerHTML += '.QuestionHeader{display:none !important;}'
  119. // cssFix.innerHTML += '.Question-main{margin:0 !important;}'
  120. // }
  121. // 问题页面登录(不可用)弹窗
  122. cssFix.innerHTML += '.Modal-backdrop{background-color: transparent;}'
  123. cssFix.innerHTML += '.signFlowModal{display:none !important;}'
  124. // 顶部关键词
  125. // cssFix.innerHTML += '.QuestionHeader-tags{display:none !important;}'
  126. // 问题相关撑满
  127. // cssFix.innerHTML += '.QuestionHeader-content{width:100% !important;}'
  128. // cssFix.innerHTML += '.QuestionHeader{min-width:auto !important;}'
  129. // 内容图片/视频最大500px
  130. cssFix.innerHTML += '.origin_image{max-width:500px !important;}'
  131. cssFix.innerHTML += '.RichText-video{max-width:500px !important;}'
  132. // 内容链接去特征
  133. cssFix.innerHTML +=
  134. '.LinkCard{margin:auto !important;display:inline !important;}.LinkCard-content{background-color: transparent;}.LinkCard-title{color:#999 !important}'
  135. // 点赞
  136. cssFix.innerHTML +=
  137. '.VoteButton{color:#999 !important;background: none; !important}'
  138. document.getElementsByTagName('head')[0].appendChild(cssFix)
  139. // 右侧问题相关
  140. document.getElementsByClassName('QuestionHeader-side')[1].style.display =
  141. 'none'
  142. document.getElementsByClassName('Question-sideColumn')[0].style.display =
  143. 'none'
  144. // 顶部问题标题
  145. // document.getElementsByTagName('header')[0].style.display = 'none'
  146. // 内容撑满
  147. document.getElementsByClassName('Question-main')[0].style.width = 'auto'
  148. document.getElementsByClassName('Question-main')[0].style.padding = '0'
  149. document.getElementsByClassName('Question-mainColumn')[0].style.width = '70%'
  150. document.getElementsByClassName('Question-mainColumn')[0].style.margin =
  151. '0 auto'
  152. document.getElementsByClassName('ListShortcut')[0].style.margin =
  153. '0 auto'
  154. }
  155. function fixSearchPage() {
  156. let cssFix = document.createElement('style')
  157. // header
  158. // cssFix.innerHTML += 'header{display:none !important;}'
  159. // SearchTabs
  160. cssFix.innerHTML += '.SearchTabs{display:none !important;}'
  161. // SearchSideBar
  162. cssFix.innerHTML += '.SearchSideBar{display:none !important;}'
  163. // CornerButtons
  164. cssFix.innerHTML += '.CornerButtons{display:none !important;}'
  165. // .SearchMain
  166. cssFix.innerHTML +=
  167. '.SearchMain{width:100% !important;margin: 0 !important;}'
  168. // Search-container
  169. cssFix.innerHTML +=
  170. '.Search-container{width: auto !important;min-height: auto !important;margin:none !important;}'
  171. cssFix.innerHTML += '.SearchSections{width:auto !important}'
  172. // 点赞
  173. cssFix.innerHTML +=
  174. '.VoteButton{color:#999 !important;background: none; !important}'
  175. // 内容图片/视频最大500px
  176. cssFix.innerHTML += '.origin_image{max-width:500px !important;}'
  177. cssFix.innerHTML += '.RichText-video{max-width:500px !important;}'
  178. document.getElementsByTagName('head')[0].appendChild(cssFix)
  179. }
  180. function fixHomePage() {
  181. let cssFix = document.createElement('style')
  182. // 内容图片/视频最大500px
  183. cssFix.innerHTML += '.origin_image{max-width:500px !important;}'
  184. cssFix.innerHTML += '.RichText-video{max-width:500px !important;}'
  185. // header
  186. cssFix.innerHTML += '.GlobalSideBar{display:none !important;}'
  187. // 播放器
  188. cssFix.innerHTML += '.ZVideoItem-video{display:none !important;}'
  189. cssFix.innerHTML += '.VideoAnswerPlayer{display:none !important;}'
  190. // cssFix.innerHTML += '.ZVideoItem-video{max-width:200px !important;}'
  191. // 左侧只留下导航
  192. let nodes = document.querySelectorAll('.LeftMenu')
  193. nodes.forEach((node, index) => {
  194. if (index !== 0) {
  195. node.style.display = 'none'
  196. } else {
  197. node.style.border = 'none'
  198. }
  199. });
  200.  
  201. let rightSideBardata = document.querySelector('div[data-za-detail-view-path-module="RightSideBar"]')
  202. rightSideBardata.style.display = 'none'
  203. let advertisingCardNodes = document.querySelectorAll('.TopstoryItem--advertCard')
  204. advertisingCardNodes.forEach((node, index) => {
  205. node.style.display = 'none'
  206. });
  207. // cssFix.innerHTML += '.Topstory-container{width:70% !important;padding:0 !important}'
  208. cssFix.innerHTML += '.Topstory-mainColumn{width:100% !important;}'
  209. document.getElementsByTagName('head')[0].appendChild(cssFix)
  210. }
  211. //
  212. })()

QingJ © 2025

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