Код: Выделить всё
// ==UserScript==
// @name Hide expanding menu bar
// @namespace http://tampermonkey.net/
// @version 0.1
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @description Hides Zillow auto-expanding menu
// @author mikmak
// @match https://www.zillow.com/*
// @grant GM_addStyle
// ==/UserScript==
const $ = window.$;
function hideStuff() {
$('.data-zg-section="main"').removeClass('.data-zg-section="main"');
$('.data-zg-section="main"').hide();
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... mpermonkey
Мобильная версия