Created
July 17, 2015 14:48
-
-
Save unzan/234cffaa02c4bc3a638d to your computer and use it in GitHub Desktop.
Disable "Share Link" via drag and drop in Voat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Voat without DND | |
// @namespace https://github.com/unzan | |
// @description Disable "Share Link" via drag and drop in Voat | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js | |
// @include https://voat.co/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
$(document).ready(function () { | |
$('body').attr({ ondrop: null, ondragover: null}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment