Greasy Fork

来自缓存

Greasy Fork is available in English.

知乎免登录

知乎免登录脚本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         知乎免登录
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  知乎免登录脚本
// @author       You
// @match        https://*.zhihu.com/*
// @grant        none
// ==/UserScript==

(function () {
// 若要开启实验性功能,请将下方 experimentalFunction = false 改成 experimentalFunction = true
  const experimentalFunction = false

  "use strict";
  if (document.location.href.indexOf("/signin?") > -1) {
    window.location.href = "//zhihu.com/search?";
  }


  function htmlObservation(mutationList,observer){
    for(let mutation of mutationList){
      if('attributes' === mutation.type && 'style' === mutation.attributeName){
        if(document.documentElement.style.overflow !== 'auto'){
          document.documentElement.style.overflow = 'auto'
        }
      }
    }
  }

  function bodyObservation(mutationList,observer){
    if(document.getElementsByClassName('signFlowModal')[0]){
      const model = document.getElementsByClassName('Modal-wrapper')[0]
      if(model){
        model.parentNode.removeChild(model)
      }
    }else{
      if(experimentalFunction && document.getElementsByClassName('Modal-backdrop')[0]){
        const backdrop = document.getElementsByClassName('Modal-backdrop')[0]
        if(!backdrop.getAttribute('clickedevent')){
          backdrop.onclick = function(e){
            const closebutton = backdrop.parentNode.getElementsByClassName('Modal-closeButton')[0]
            if(closebutton){
              closebutton.click()
            }
          }
          backdrop.setAttribute('clickedevent',true)
        }
      }
    }
  }

  document.documentElement.style.overflow = 'auto'
  const htmlObserverConfig = {attributes:true}
  const htmlObserver = new MutationObserver(htmlObservation)
  htmlObserver.observe(document.documentElement,htmlObserverConfig)

  const bodyObserverConfig = {childList:true,subtree:true}
  const bodyObserver = new MutationObserver(bodyObservation)
  bodyObserver.observe(document.body,bodyObserverConfig)

  
})();