Greasy Fork

来自缓存

Greasy Fork is available in English.

Ape's escape artist

All this script does is allowing you to access the context menu and selecting text/images + dragging them. Works in Firefox 66

当前为 2019-04-11 提交的版本,查看 最新版本

// ==UserScript==
// @name     Ape's escape artist
// @name:   Ape
// @description  All this script does is allowing you to access the context menu and selecting text/images + dragging them. Works in Firefox 66
// @version  1
// @grant    none
// @namespace http://greasyfork.icu/users/290672
// ==/UserScript==

window.onload = function() {
  	document.body.ondragstart = function() {
       return true;
    }
    document.body.onselectstart = function() {
       return true;
    }
}

document.addEventListener('contextmenu', function(event){event.stopPropagation();}, true);