DailyMail right pane remover

Remove the "Don't miss" column from the right of the Daily Mail.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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     https://www.dailymail.co.uk/*
// @version     1.2
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant       none
// @license     GPL3
// @compatible  firefox 
// @supportURL  [email protected]
// ==/UserScript==

/*

Changes:
  1.3 Switched include to https.

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();
});