知乎外链免确认

RT

目前為 2016-12-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name         知乎外链免确认
// @version      0.12
// @description  RT
// @author       Erimus
// @match        *link.zhihu.com/*
// @grant        none
// @namespace http://erimus.cc/
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var aAll = document.getElementsByTagName("a");
    for(var i=0;i<aAll.length;i++){
        if(aAll[i].innerHTML == "继续访问"){
            window.location=aAll[i].href;
        }
    }
})();

QingJ © 2025

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