Amazon Prime Now Checker

Adds a button to open Amazon items in Amazon Prime Now, when available.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Amazon Prime Now Checker
// @description  Adds a button to open Amazon items in Amazon Prime Now, when available.
// @namespace    Arithmomaniac_Tampermonkey
// @version      0.1
// @author       Arithmomaniac
// @include      /^https?://(www|smile)\.amazon\.com/.*/[A-Z\d]{10}//
// @run-at       document-ready
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function() {
    'use strict';
    var primeIcon = document.querySelector("#priceBadging_feature_div .a-icon-prime");
    if (primeIcon) //available on prime
    {
        var span = document.createElement("span");
        span.className = "prime-now-link";
        span.innerHtml = "<i>Checking Prime Now...</i>";
        primeIcon.parentElement.appendChild(span);

        var primeUrl = "https://primenow.amazon.com" + window.location.pathname;
        GM_xmlhttpRequest({
            url: primeUrl,
            method: "GET",
            onload: function(response) {
                //if item exists and is available in PrimeNow
                if (response.status === 200 && response.responseText.indexOf('<span class="a-color-price a-text-bold">Currently Unavailable.</span>') === -1)
                {
                    
                    span.innerHTML = `<a target="_blank" href="${primeUrl}">` +
                        `<img height="16" src="https://images-na.ssl-images-amazon.com/images/I/31uhU1SAhgL.png"></img>` +
                        `</a>`;
                }
                else
                {
                    span.remove();
                }
            }
    })
    }
})();