Amazon Giveaway Bot

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

Amazon Giveaway Botคืออะไร?

Amazon Giveaway Bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ty Gooch และคุณลักษณะหลักของมันคือ "Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Giveaway Bot

ดาวน์โหลดไฟล์ส่วนขยาย Amazon Giveaway Bot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Amazon Giveaway Bot Amazon Giveaway Bot
ID mjdecdljoiaomcpknmmheneblmdpngci
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/amazon-giveaway-bot/mjdecdljoiaomcpknmmheneblmdpngci
คำอธิบาย Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.
ขนาดไฟล์ 163 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 4.0.0
อัปเดตครั้งล่าสุด 2019-10-02
วันที่เผยแพร่ 2019-09-29
ผู้พัฒนา Ty Gooch
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}