Sleazy Fork is available in English.

FurFling RightClickEnable

Re-enables the right-click menu on FurFling.com

// ==UserScript==
// @name         FurFling RightClickEnable
// @namespace    https://sharky.pw/
// @version      1.0
// @description  Re-enables the right-click menu on FurFling.com
// @author       Sharky - https://sharky.pw/ - https://furfling.com/ItsSharky
// @match        http://furfling.com/*
// @match        https://furfling.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('img').unbind('contextmenu');
})();