Always Draggable Images

Make images always draggable. It adds "draggable" attribute to it.

// ==UserScript==
// @name        Always Draggable Images
// @namespace   Violentmonkey Scripts
// @grant       none
// @description  Make images always draggable. It adds "draggable" attribute to it.
// @version     1.0
// @include     *example.com*
// @grant    GM_addStyle
// @require  https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// ==/UserScript==

    
document.addEventListener("mousemove", function() {
  for (var e of document.getElementsByTagName('img')) e.setAttribute('draggable', true);
});