NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name unsealing heaven
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to unseal the world!
// @author You
// @match https://www.cityheaven.net/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @updateURL https://openuserjs.org/meta/fujimasa/unsealing.meta.js
// @downloadURL https://openuserjs.org/install/fujimasa/unsealing.user.js
// @copyright 2021, fujimasa (https://openuserjs.org/users/fujimasa)
// @license MIT
// ==/UserScript==
(function () {
'use strict';
document.addEventListener('contextmenu', function (e) {
e.stopPropagation();
}, true);
})();