MHXG WIKI ReadOnly Unlock

Unlock MHXG WIKI's right click and select.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         MHXG WIKI ReadOnly Unlock
// @namespace    https://github.com/Shazi199/
// @version      0.0.4
// @description  Unlock MHXG WIKI's right click and select.
// @author       Shazi199
// @license      MIT License
// @match        http://wiki.mhxg.org/*
// @match        http://mhwg.org/*
// @match        https://mhrise.com/*
// @grant        none
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==

(function() {
    'use strict';

    $("body").removeAttr("onContextmenu");
    $("body").removeAttr("onSelectStart");
    $("body").attr("style","");
})();