您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the "Don't miss" column from the right of the Daily Mail.
当前为
// ==UserScript== // @name DailyMail right pane remover // @namespace tag://[email protected] // @description Remove the "Don't miss" column from the right of the Daily Mail. // @include http://www.dailymail.co.uk/* // @version 1.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== /* Adapted from http://userscripts-mirror.org/scripts/show/177214 Original namespace: http://tilman.baumann.name/femaleremover The original didn't work because of a typo (requir instead of require) and because the include url for jquery was wrong. I have added several classes to be removed. Not sure they are all necessary. Kevin Whitefoot, 2015-04-19. */ window.$(document).ready(function () { window.$('.beta').remove(); window.$('femail item').remove(); window.$('link-bogr2').remove(); window.$('linkro-wocc').remove(); });