ImgGlue

Stop images from being draggable

// ==UserScript==
// @name         ImgGlue
// @namespace    ImgGlue
// @version      1.0
// @description  Stop images from being draggable
// @author       Gimrin
// @include      *.diamondhunt.co/*
// @match        https://www.diamondhunt.co
// @grant        none
// ==/UserScript==

$( document ).on("dragstart","img",function(){return false;});