// ==UserScript== // @name IRCTC Right Click Enable By Mandy // @description Remove Right Click Error // @namespace IRCTC // @include http://*irctc.co.in/* // @include https://*irctc.co.in/* // @version 1.0 // @author Mandy // @downloadURL https://update.greasyfork.icu/scripts/1296/IRCTC%20Right%20Click%20Enable%20By%20Mandy.user.js // @updateURL https://update.greasyfork.icu/scripts/1296/IRCTC%20Right%20Click%20Enable%20By%20Mandy.meta.js // ==/UserScript== ///////////////// Remove Right Click Error message : "Sorry you donot have the permission to Right Click" with (document.wrappedJSObject || document) { onmouseup = null; onmousedown = null; oncontextmenu = null; }