您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide annoying rows
// ==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.20230919094359 // @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; } .plasma_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; } .dominant_realtor { background: red; display: none; } .dfp-placeholder-stickyfooter { background: red; display: none; } .dfp-toaster { background: red; display: none; } ` );