Disable Voat's share overlay

This will disable Voat's share overlay.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==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.1
// @date 2015-07-17
// @namespace https://github.com/HyphenSam/Voat-Share-Overlay
// @include http://voat.co/*
// @match http://voat.co/*
// @include https://voat.co/*
// @match https://voat.co/*
// @grant none
// ==/UserScript==
    $('div#share-a-link-overlay').remove();
    $("body").removeAttr("ondrop");
    $("body").removeAttr("ondragover");