您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skip the "Need anything else?" page by changing the cart proceed button destination
// ==UserScript== // @name Skip "Need anything else?" page // @name:ja 「他に何か必要ですか?」画面をスキップ // @namespace https://github.com/zknx // @icon https://www.amazon.com/favicon.ico // @version 1.1 // @description Skip the "Need anything else?" page by changing the cart proceed button destination // @description:ja カート画面上のボタンの遷移先を変えることで「他に何か必要ですか?」画面をスキップ // @author zknx // @match https://www.amazon.*/gp/cart* // @match https://www.amazon.*/cart* // ==/UserScript== document.addEventListener('click', e => { const target = e.target; if (target.name === 'proceedToRetailCheckout') { e.preventDefault(); window.location.href = '/checkout'; } });