// ==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('g-more-link, .Wt5Tfe').forEach(el => {
const text = (el.innerText || '').trim();

if (!text.includes('他の人はこちらも検索')) return;

const block =
el.closest('div[data-hveid]') ||
el.closest('g-section-with-header') ||
el.parentElement;

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

}

clean();

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