您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
the ultimate goal is to make the amazon homepage appear as simple as a google search homepage without any distracting elements
// ==UserScript== // @name debloat amazon homepage // @namespace ajd // @match http*://*amazon.com/ // @match http*://*amazon.com/ref=nav_logo // @grant none // @version 1.0 // @author ajdungan // @license MIT // @description the ultimate goal is to make the amazon homepage appear as simple as a google search homepage without any distracting elements // @supportURL https://github.com/ajdungan/debloat-amazon-homepage/ // @contributionURL BTC 1P4WAuxS1h74DM4awmPh5kCrbYpLnU8r4M ETH 0x8e1977d348042175B98aF35E87e8B49474Ff4F92 // @run-at document-end // ==/UserScript== ////////////////////////////////////////////////////////////////////////////////////// //Remove everthing but search bar and basic navigation //id="desktop-banner" document.querySelectorAll('[id="desktop-banner"]')[0].remove() //class="a-section a-spacing-none" document.getElementsByClassName('a-section a-spacing-none')[0].remove() //class="navFooterVerticalColumn navAccessibility" document.getElementsByClassName('navFooterVerticalColumn navAccessibility')[0].remove() //id="navBackToTop" document.querySelectorAll('[id="navBackToTop"]')[0].remove() //class="navFooterBackToTop" document.getElementsByClassName('navBackToTop')[0].remove() //////////////////////////END/////////////////////////////////////////////////////////
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址