楽天市場の検索結果からPRを消す
当前为
// ==UserScript==
// @name rakuten pr
// @namespace https://greasyfork.org/morca
// @version 0.2
// @description 楽天市場の検索結果からPRを消す
// @author morca
// @match https://search.rakuten.co.jp/search/mall/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$("div.searchresultitem > div.title > h2 > span.-pr").each((i, e) => {
$(e).parent().parent().parent().hide();
});
$("div.searchresultitem > div.content > div.title > h2 > span.-pr").each((i, e) => {
$(e).parent().parent().parent().parent().hide();
});
})();