Amazon One Click Buy

This extension will autobuy your product on just a single click event.

Amazon One Click Buy là gì?

Amazon One Click Buy là một tiện ích mở rộng Chrome được phát triển bởi WellWishers, và tính năng chính của nó là "This extension will autobuy your product on just a single click event.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Amazon One Click Buy

Tải xuống các tệp mở rộng Amazon One Click Buy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Hi, we back with another amazon tool, This one is little simple, in which you can just buy your product with a single click.

Feel free to write your thoughts on this tool.
Thanks!!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Amazon One Click Buy Amazon One Click Buy
ID idphmhooafacghmfgdbllfagdnoalaki
URL Chính Thức https://chromewebstore.google.com/detail/amazon-one-click-buy/idphmhooafacghmfgdbllfagdnoalaki
Mô tả This extension will autobuy your product on just a single click event.
Kích Thước Tệp 19.65 KB
Số Lần Cài Đặt 127
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-02-01
Ngày Phát Hành 2022-05-06
Nhà Phát Triển WellWishers
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon One Click Buy",
    "description": "This extension will autobuy your product on just a single click event.",
    "version": "1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.in\/*",
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.com.au\/*",
                "https:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.cn\/*",
                "https:\/\/www.amazon.co.jp\/",
                "https:\/\/www.amazon.it\/",
                "https:\/\/www.amazon.es\/",
                "https:\/\/www.amazon.com.mx\/"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "custom_script.js"
            ]
        }
    ]
}