Hide "For You" feed

Hides "For You" feed

// ==UserScript==
// @name         Hide "For You" feed
// @name:ja      おすすめ非表示
// @description         Hides "For You" feed
// @description:ja      トップページに出る"おすすめ"を非表示にします
// @version      1.0
// @match        https://www.threads.net/
// @match        https://threads.net/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=threads.net
// @grant        none
// @license      Public Domain
// @namespace https://gf.qytechs.cn/users/1448850
// ==/UserScript==

(() => {
let s = document.createElement('style');
s.textContent = `
div:has(> * > * > * > * > a[href="/for_you"][aria-label]) { display: none }
`;
document.head.appendChild(s);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址