Greasy Fork

Greasy Fork is available in English.

fuck zhihu

try to take over the world!

当前为 2019-10-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         fuck zhihu
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.zhihu.com/
// @grant        none
//@require https://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==

(function() {
    'use strict';
    
    var i=0;
    var s=setInterval(()=>{
        $("[aria-label='更多']")[i].click();
        if($(".AnswerItem-selfMenuItem").length>1){
            $(".AnswerItem-selfMenuItem")[1].click();
            $(".ReportMenu-item")[0].click();
            $(".ReportMenu-button").click();
            $(".AnswerItem-selfMenuItem")[1].click();
        }

        i++;
    },5000)
    
})();