知乎页面优化

disable the pop up of zhihu login form

  1. // ==UserScript==
  2. // @name 知乎页面优化
  3. // @namespace https://github.com/LiangLouise/TM_Script
  4. // @homepageURL https://github.com/LiangLouise/TM_Script
  5. // @version 0.0.1.1
  6. // @description disable the pop up of zhihu login form
  7. // @author LiangLouise
  8. // @match https://www.zhihu.com/*
  9. // @grant none
  10. // @licenlise MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. function delete_adb_banner() {
  17. const adb_class = '.AdblockBanner';
  18. let banner = document.querySelector(adb_class);
  19. if (banner) banner.remove();
  20. }
  21.  
  22. function hide_login_form_scrolling() {
  23. let login_button = document.querySelector('.Button.AppHeader-login.Button--blue');
  24. if (!login_button) return;
  25.  
  26. const login_class = ".Modal.Modal--default.signFlowModal";
  27. const config = {childList: true};
  28. const mutateCallBack = function(mutationsList, observer) {
  29. for(let mutation of mutationsList) {
  30. // When it tries to disable scrollbar
  31. if (mutation.type === 'childList' && document.querySelector(login_class)) {
  32. // Remove the log in form div
  33. document.querySelector(login_class).parentElement.parentElement.remove();
  34. // Remove the style at root disabling scrollbar
  35. document.documentElement.removeAttribute('style');
  36. }
  37. }
  38. };
  39. const observer = new MutationObserver(mutateCallBack);
  40.  
  41. var timer = null;
  42. window.addEventListener('scroll', function(){
  43. // Create an observer instance linked to the callback function
  44. observer.observe(document.body, config);
  45. if(timer !== null) {
  46. clearTimeout(timer);
  47. }
  48. timer = setTimeout(function() {
  49. observer.disconnect();
  50. }, 150);
  51. })
  52. }
  53.  
  54. function hide_login_form_initial() {
  55. let login_button = document.querySelector('.Button.AppHeader-login.Button--blue');
  56. if (!login_button) return;
  57.  
  58. const login_class = ".Modal.Modal--default.signFlowModal";
  59. const config = {childList: true};
  60. let observer_2;
  61. const mutateCallBack = function(mutationsList, observer) {
  62. for(let mutation of mutationsList) {
  63. // When it tries to disable scrollbar
  64. if (mutation.type === 'childList' && document.querySelector(login_class)) {
  65. // Remove the log in form div
  66. document.querySelector(login_class).parentElement.parentElement.remove();
  67. // Remove the style at root disabling scrollbar
  68. document.documentElement.removeAttribute('style');
  69. observer_2.disconnect();
  70. }
  71. }
  72. };
  73.  
  74. // Create an observer instance linked to the callback function
  75. observer_2 = new MutationObserver(mutateCallBack);
  76. observer_2.observe(document.body, config);
  77. setTimeout(function(){
  78. observer_2.disconnect();
  79. }, 200);
  80. }
  81.  
  82.  
  83. delete_adb_banner();
  84. hide_login_form_initial();
  85. hide_login_form_scrolling();
  86. })();

QingJ © 2025

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