您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clean your HT newspaper online.
// ==UserScript== // @name Remove Disqus and other social media from Hindustan Times // @description Clean your HT newspaper online. // @namespace http://www.hindustantimes.com // @include http://www.hindustantimes.com/* // @require https://code.jquery.com/jquery-2.1.4.min.js // @version 1 // @grant none // ==/UserScript== setInterval(function(){ $("#disqus_thread").remove(); $(".commn_row,.footernav").remove(); $(".ggl_page_row").remove(); $(".story_comment").remove(); $(".follows").remove(); $('a').filter(function(index) { return $(this).text() === "editor's pick"; }).closest("section").remove(); }, 1000);