Disable Voat's share overlay

This will disable Voat's share overlay.

目前為 2015-07-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name Disable Voat's share overlay
// @description This will disable Voat's share overlay.
// @homepageURL https://github.com/HyphenSam/Voat-Share-Overlay
// @author HyphenSam
// @version 1.0
// @date 2015-07-17
// @namespace https://github.com/HyphenSam/Voat-Share-Overlay
// @include http://voat.co/*
// @match http://voat.co/*
// ==/UserScript==
    $('div#share-a-link-overlay').remove();
    $("body").removeAttr("ondrop");
    $("body").removeAttr("ondragover");