您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Eliminates all of the "useless crap" (as defined by me) on the Amazon homepage
当前为
// ==UserScript== // @name Remove Amazon Recommendations // @author Anonymous // @namespace http://www.example.url/to/your-web-site/ // @description Eliminates all of the "useless crap" (as defined by me) on the Amazon homepage // @version 0.1 // @include https://www.amazon.com // @license Creative Commons Attribution License // ==/UserScript== var crapFrames = [ "desktop-grid-1", "desktop-grid-2", "desktop-grid-3", "gw-content-grid", "rhf-context", "desktop-ad-btf", "desktop-grid-1-D1", "desktop-grid-1-D2", "gw-desktop-herotator", "nav-swmslot" ]; for (var i=0;i<crapFrames.length;i++) { var crapFrame = document.getElementById(crapFrames[i]); if (crapFrame) { crapFrame.parentNode.removeChild(crapFrame); } }