Greasy Fork is available in English.

Enable Flash on some sites [Firefox 69+]

Bypasses detection of Flash Player on websites using SwfObject.

// ==UserScript==
// @name     Enable Flash on some sites [Firefox 69+]
// @version  1
// @grant    none
// @description Bypasses detection of Flash Player on websites using SwfObject.
// @namespace https://greasyfork.org/users/410274
// ==/UserScript==

window.eval("var originalSwfObject = {};\
Object.defineProperty(window, \"swfobject\", {\
  set: function(x){\
    originalSwfObject = x;\
    originalSwfObject.ua.pv = [32,0,0];\
  },\
  get: function(){\
   return originalSwfObject; \
  }\
});");