Amazon Giveaway Bot

Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.

Was ist Amazon Giveaway Bot?

Amazon Giveaway Bot ist eine Chrome-Erweiterung, die von Ty Gooch entwickelt wurde, und ihr Hauptmerkmal ist "Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.".

Erweiterungsscreenshots

screenshot

Amazon Giveaway Bot-Erweiterungs-CRX-Datei herunterladen

Laden Sie Amazon Giveaway Bot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Features include CAPTCHA solving, customizable filters, real-time notifications, and support for multiple accounts. Bypasses client side validation to enter giveaways without fulfilling time intensive entry requirements.                    

Grundlegende Informationen zur Erweiterung

Name Amazon Giveaway Bot Amazon Giveaway Bot
ID mjdecdljoiaomcpknmmheneblmdpngci
Offizielle URL https://chrome.google.com/webstore/detail/amazon-giveaway-bot/mjdecdljoiaomcpknmmheneblmdpngci
Beschreibung Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.
Dateigröße 163 KB
Installationsanzahl 32
Aktuelle Version 4.0.0
Letztes Update 2019-10-02
Veröffentlichungsdatum 2019-09-29
Entwickler Ty Gooch
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Giveaway Bot",
    "version": "4.0.0",
    "description": "Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.",
    "icons": {
        "16": "\/images\/[email protected]",
        "32": "\/images\/[email protected]",
        "48": "\/images\/[email protected]",
        "128": "\/images\/[email protected]"
    },
    "author": "Ty Gooch ",
    "permissions": [
        "storage",
        "notifications",
        "activeTab",
        "https:\/\/www.amazon.com\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/giveaway\/"
            ],
            "js": [
                "amazonGiveawayBot.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "importStorage.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "amazonGiveawayBot.js"
    ]
}