Enable right click
// ==UserScript==
// @name FCTK
// @version 1.1
// @description Enable right click
// @author NYCC
// @match http://10.214.200.199:8080/masm/*
// @namespace https://greasyfork.org/users/301652
// ==/UserScript==
(function(){
'use strict'
window.addEventListener('load', () => {
Fn()
})
function Fn() {
document.oncontextmenu = true;
document.onselectstart = true;
}
}())