Sleazy Fork is available in English.

poipiku-show me the menu

show me the menu

// ==UserScript==
// @name         poipiku-show me the menu
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  show me the menu
// @author       AlotOfBlahaj
// @match        https://poipiku.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=poipiku.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    $('body, .Wrapper').each((i, e) => {$(e).off("contextmenu drag dragstart copy");});
})();