Greasy Fork is available in English.

P站热门作品推荐功能

try to take over the world!

您查看的为 2017-04-01 提交的版本。查看 最新版本

// ==UserScript==
// @name         P站热门作品推荐功能
// @namespace    http://tampermonkey.net/
// @version      0.1
// @icon		http://www.pixiv.net/favicon.ico
// @description  try to take over the world!
// @author       Nolimitor
// @include      *://www.pixiv.net/*
// @match        http://www.pixiv.net/
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
     var s = document.createElement('script');s.setAttribute('src','https://code.jquery.com/jquery-3.2.0.min.js');document.body.appendChild(s);
    function pixivRemovePvip(){
             jQuery("section.popular-introduction").children("a").get(0).remove();
    }
     jQuery(function(){
            jQuery("section.popular-introduction").children("a").each(function () {jQuery(this).attr('href', '#');});
            jQuery("div.popular-introduction-block").click(function(){
               alert("正在移除热门作品推荐屏蔽模块");
               pixivRemovePvip();
            });
     })
})();