Greasy Fork is available in English.

MLS Photo Resizer

Resizes large photos on flexmls so they fit on screen.

// ==UserScript==
// @name         MLS Photo Resizer
// @version      1.0
// @description  Resizes large photos on flexmls so they fit on screen.
// @author       Spencer Ayers-Hale
// @match        www.flexmls.com/cgi-bin/mainmenu.cgi
// @grant        none
// @namespace https://greasyfork.org/users/431693
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById("mainimage").style.width = "85%";
})();