您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide the Home Button in the profile dropdown menu
// ==UserScript== // @name Letterboxd Hide Home in Menu // @namespace https://greasyfork.org/en/users/96096-purple-pinapples // @match https://letterboxd.com/* // @grant none // @version 0.1 // @description Hide the Home Button in the profile dropdown menu // @author PurplePinapples // @license WTPFL // ==/UserScript== // doesnt seem to appear as soon as the page loads, try every 500ms if it fails function hideItem() { const homeLi = document.querySelector(".subnav li.divider:nth-child(2)"); if (homeLi) { homeLi.style.display = "none"; } else { setTimeout(() => hideItem(), 500); } } (function () { hideItem(); })();