Yad2 hide realtors/ads

Hide annoying rows

当前为 2023-08-04 提交的版本,查看 最新版本

// ==UserScript==
// @name     Yad2 hide realtors/ads
// @include  https://*.yad2.co.il/*
// @grant    GM_addStyle
// @description Hide annoying rows
// @run-at   document-start
// @version 0.0.1.20230804091523
// @namespace https://greasyfork.org/users/838639
// ==/UserScript==

GM_addStyle ( `
    .feeditem:has(.merchant_name) {
        background: red;
        display: none;
    }
    .feeditem:has(.project_name) {
        background: red;
        display: none;
    }
    .dfp_v2:has(.dfp-slot-container) {
        background: red;
        display: none;
    }
    .top_boxes_row:has(.dfp-slot-container) {
        background: red;
        display: none;
    }
    .yad1_row:has(.ribbon) {
        background: red;
        display: none;
    }
    .neighborhood_survey {
        background: red;
        display: none;
    }
    .widget-floating {
        background: red;
        display: none;
    }
` );