您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the picture links carousel, the Facebook, g+, etc., icons, comments, and other junk leaving only the article.
// ==UserScript== // @name DailyMail article only // @namespace tag://[email protected] // @description Remove the picture links carousel, the Facebook, g+, etc., icons, comments, and other junk leaving only the article. // @include http://www.dailymail.co.uk/* // @version 0.1 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @grant none // @license GPL3 // @compatible firefox // @supportURL [email protected] // ==/UserScript== /* Kevin Whitefoot, 2015-04-27. You might need to use noscript as well to forbid the taboola scripts. */ window.$(document).ready(function () { window.$('#mini-carousel-wrapper').remove(); window.$('.branding').remove(); window.$('.floating-menu').remove(); window.$('.related-carousel').remove(); window.$('.rotator').remove(); window.$('.rotator-pages').remove(); window.$('.shareArticles').remove(); window.$('.thumbBlock').remove(); window.$('.thumbnail-overlay').remove(); window.$('.trc_rbox').remove(); window.$('.trc_rbox_container').remove(); window.$('.trc_rbox_div').remove(); window.$('.trc_rbox_outer').remove(); window.$('.videoCube').remove(); window.$('.wocc').remove(); window.$('.image-wrap').remove(); window.$('.mol-img').remove(); window.$('.mobile-gallery').remove(); window.$('.mobile-gallery-icon').remove(); window.$('#articleIconLinksContainer').remove(); window.$('#taboola-below-main-column').remove(); window.$('#most-watched-videos-wrapper').remove(); window.$('#most-watched-videos').remove(); });