// ==UserScript==
// @name Google 注目商品 削除
// @namespace local
// @version 1.0
// @description 「注目されている商品」
// @author You
// @run-at document-end
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==

(function () {
'use strict';

function clean() {

document.querySelectorAll('h3, div, span').forEach(el => {
const text = (el.innerText || '').trim();

if (text !== '注目されている商品') return;

const block =
el.closest('g-scrolling-carousel') ||
el.closest('div[data-hveid]');

if (block) {
block.remove();
}
});

}

clean();

new MutationObserver(clean).observe(document.body, {
childList: true,
subtree: true
});
})();