DailyMail right pane remover

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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();
});