💰 Real Coupon Finder - Amazon

Auto-fetch real Amazon coupons from CouponFollow & apply best one!

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

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

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         💰 Real Coupon Finder - Amazon
// @namespace    https://1lm.me/codecopilot
// @version      1.1
// @description  Auto-fetch real Amazon coupons from CouponFollow & apply best one!
// @match        *://www.amazon.*/*
// @grant        GM_xmlhttpRequest
// @connect      couponfollow.com
// @run-at       document-idle
// ==/UserScript==

(function () {
    'use strict';

    const waitForPrice = (selector, callback) => {
        const el = document.querySelector(selector);
        if (el) return callback(el);
        setTimeout(() => waitForPrice(selector, callback), 500);
    };

    const parsePrice = (text) => {
        const match = text.replace(/[^0-9.,]/g, '').match(/[\d.,]+/);
        if (!match) return null;
        return parseFloat(match[0].replace(',', ''));
    };

    const fetchCoupons = (callback) => {
        GM_xmlhttpRequest({
            method: "GET",
            url: "https://www.couponfollow.com/site/amazon.com",
            onload: function (response) {
                const parser = new DOMParser();
                const doc = parser.parseFromString(response.responseText, "text/html");
                const coupons = Array.from(doc.querySelectorAll('.coupon-code-block .coupon-code-text'))
                    .map(el => el.textContent.trim())
                    .filter(code => /^[A-Z0-9]{4,}$/.test(code));
                callback(coupons);
            }
        });
    };

    const injectButton = (priceElement, price) => {
        const btn = document.createElement('button');
        btn.textContent = '🔍 Fetch Real Coupons';
        btn.style = 'margin-top:10px;padding:8px 14px;background:#ff9900;color:#fff;border:none;border-radius:4px;cursor:pointer;';
        priceElement.parentElement.appendChild(btn);

        const resultBox = document.createElement('div');
        resultBox.style = 'margin-top:10px;font-weight:bold;';
        priceElement.parentElement.appendChild(resultBox);

        btn.onclick = () => {
            resultBox.textContent = '⏳ Fetching coupons...';
            fetchCoupons((codes) => {
                if (codes.length === 0) {
                    resultBox.textContent = '❌ No coupons found';
                } else {
                    resultBox.innerHTML = `✅ Found <b>${codes.length}</b> coupons<br><code>${codes.join('</code> <code>')}</code>`;
                }
            });
        };
    };

    waitForPrice('.a-price .a-offscreen', (el) => {
        const price = parsePrice(el.textContent);
        if (price) injectButton(el, price);
    });

})();