Skip to content

Instantly share code, notes, and snippets.

@unzan
Created July 17, 2015 14:48
Show Gist options
  • Save unzan/234cffaa02c4bc3a638d to your computer and use it in GitHub Desktop.
Save unzan/234cffaa02c4bc3a638d to your computer and use it in GitHub Desktop.
Disable "Share Link" via drag and drop in Voat
// ==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