Greasy Fork is available in English.

PrixAuM2

Afficher le prix au mètre carré sur SeLoger.com

// ==UserScript==
// @name         PrixAuM2
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Afficher le prix au mètre carré sur SeLoger.com
// @author       vctls
// @match        https://www.seloger.com/list.htm*
// @grant        none
// @require https://code.jquery.com/jquery-3.4.1.slim.min.js
// @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js
// ==/UserScript==

'use strict';
waitForKeyElements('div.c-pa-info', function(el){
    el.append(
        Math.round(
            el[0].querySelector('div.c-pa-price').innerHTML.replace(' ','').match('([0-9]+)(?: €)')[1]
            /
            el[0].querySelector('div.c-pa-criterion').innerHTML.replace(',','.').match('([0-9\.]+)(?: m²)')[1]
        ) + ' €/m²'
    )
});