zeloff / Cian map meter price

// ==UserScript==
// @name         Cian map meter price
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Отображает цену за метр при быстром просмотре на карте
// @author       zeloff
// @match        https://www.cian.ru/map/*
// @license      MIT; https://opensource.org/licenses/MIT
// ==/UserScript==

(function() {
    'use strict';
     setInterval(function(){
        let section = document.querySelectorAll('div[class^="section-"]');
        for (let s of section){
            let pText = s.children[0].children[0].innerText;
            let price = parseInt(pText.split(' ').join(''));
            if (!pText.match(/\d* \d* ₽\/м²/)){
                let size = parseInt(s.children[1].children[2].innerText);
                let metreSize = parseInt(price/size).toLocaleString();
                s.children[0].children[0].innerHTML += `
                    <div style="font-size: 14px;font-weight: 500;line-height: 18px;color: #7a7a7a;">
                        ${metreSize} ₽/м²
                    </div>`;
            }
        }
    }, 1000);
})();