知乎Pure Reader

Delete useless elements and clear login form when it appears

  1. // ==UserScript==
  2. // @name 知乎Pure Reader
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Delete useless elements and clear login form when it appears
  6. // @author https://github.com/McCarthey
  7. // @match *://*.zhihu.com/question/*
  8. // @match *://*.zhihu.com/p/*
  9. // @match *://link.zhihu.com/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. jumpDirectly();
  17.  
  18. displayNone(['.QuestionHeader-title','.ColumnPageHeader','.like','.RichContent-actions', '.AdblockBanner','.AppHeade', 'header','.Question-sideColumn.Question-sideColumn--sticky' ])
  19.  
  20. function displayNone(eles) {
  21. eles.forEach((ele) => {
  22. if(document.querySelector(ele)) {
  23. document.querySelector(ele).style.display = 'none'
  24. }
  25. })
  26. };
  27.  
  28. setInterval(() => {
  29. const btn = document.querySelector('.Button.Modal-closeButton.Button--plain');
  30. if (btn) {
  31. btn.click();
  32. document.querySelector('html').style.overflow = 'auto'
  33. }
  34. }, 100);
  35.  
  36. function jumpDirectly () {
  37. if(location.href.includes('link.zhihu.com/?target=')) {
  38. const linkBtn = document.querySelector('.actions .button')
  39. linkBtn.click()
  40. }
  41. }
  42. })();

QingJ © 2025

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