Skip "Need anything else?" page

Skip the "Need anything else?" page by changing the cart proceed button destination

Stan na 16-10-2025. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name           Skip "Need anything else?" page
// @name:ja        「他に何か必要ですか?」画面をスキップ
// @namespace      https://github.com/zknx
// @icon           https://www.amazon.com/favicon.ico
// @version        1.2
// @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/entry/cart';
    }
});