我一直在研究这几个小时,我无法弄明白,所以我只会问。
我需要使用Greasemonkey从页面隐藏背景图像。它应该可以工作,但由于某种原因,它不起作用。
Greasemonkey脚本:
// ==UserScript==
// @name 123
// @namespace 123
// @include https://www.somesite.org/some-site-page.php
// @version 1
// @grant none
// ==/UserScript==
$('a').each(function(){
if($(this).css('background-image')=='url("https://www.somesite.org/img/icon/some-background-image-photo.png")'){
$(this).parent().remove();
}
背景图片代码:
.profile_view_img_6915039 {
background-image: url('https://www.somesite.org/img/icon/some-background-image-photo.png');
}
注意:我无法使用.profile_view_img _ ###类隐藏它,因为每次刷新时该数字都会更改,我需要它在刷新之间工作。所以我必须使用该图像URL作为选择器,然后以某种方式隐藏它。
有人可以帮忙吗?
由于