AMZ Chrome Bot

A simple chrome extension that will navigate, search & get data from Seller Central and Amazon website in every page loaded

AMZ Chrome Bot là gì?

AMZ Chrome Bot là một tiện ích mở rộng Chrome được phát triển bởi shujo, và tính năng chính của nó là "A simple chrome extension that will navigate, search & get data from Seller Central and Amazon website in every page loaded".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AMZ Chrome Bot

Tải xuống các tệp mở rộng AMZ Chrome Bot 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

                        Features:
 - Hide Purge & Replace Section in Upload Page
 - Search & Extract Table in Manage Inventory
 - Search & Extract Table in Price Alerts
 - Navigate ASIN to Offer-listing & Main Detail Page
 - Show ASIN in old & new Add Product Detail Page
 - Notify the count of uploaded file in Status Page

Updates - 2021:
- Added Brand Page Extractor [03/16/2021]
- Update Brand Page Extractor [03/20/2021]
- Updated excel format in bulk extractor tool [04/14/2021]
- Updated Price Alert Page Extractor [04/16/2021]
- Added Competitor Data Extractor [08/04/2021]
- Fixed minor issue on Competitor Data Extractor [08/19/2021]
- Fixed button and shortcut issue on Seller Central Inventory Extractor [09/21/2021]
- Added additional extract in the other tabs in Pricing Issue Page [09/30/2021]
- Fixed extraction in Price Alert Page - Inactive Offers tab [10/14/2021]
- Fixed hiding of purge link in new Inventory Upload page [10/15/2021]
- Fixed issue in Hiding of purge link in Inventory Upload page [10/19/2021]

Updates - 2022:
- Fixed issue on extracting items in pricing page [1/11/2022]
- Fixed Pricing Page - Inactive Offers (Web element update) [1/17/2022]                    

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

Tên AMZ Chrome Bot AMZ Chrome Bot
ID alimokmfohklephcciobclpcepdkkkko
URL Chính Thức https://chromewebstore.google.com/detail/amz-chrome-bot/alimokmfohklephcciobclpcepdkkkko
Mô tả A simple chrome extension that will navigate, search & get data from Seller Central and Amazon website in every page loaded
Kích Thước Tệp 925 KB
Số Lần Cài Đặt 112
Phiên Bản Hiện Tại 2.2.3
Cập Nhật Lần Cuối 2022-10-09
Ngày Phát Hành 2022-10-08
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển shujo
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": "AMZ Chrome Bot",
    "version": "2.2.3",
    "author": "shujo",
    "description": "A simple chrome extension that will navigate, search & get data from Seller Central and Amazon website in every page loaded",
    "permissions": [
        "notifications",
        "downloads",
        "tabs",
        "storage",
        "activeTab",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/xlsx.full.min.js",
            "js\/jquery.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/sellercentral.amazon.com\/*",
                "https:\/\/www.amazon.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/myscript.js",
                "js\/velcroDetector.js",
                "js\/noImgDetector.js",
                "js\/addProductExtractor.js",
                "js\/xlsx.full.min.js",
                "js\/priceIssues.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon32.png",
            "32": "images\/icon48.png"
        },
        "default_title": "AMZ Chrome Bot",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "MacCtrl+Shift+Space"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}