ASIN Super Extractor

Extract ASIN from amazon product

什麼是ASIN Super Extractor?

ASIN Super Extractor是由kiwi merch開發的Chrome擴展程式,該擴展的主要功能是“Extract ASIN from amazon product”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載ASIN Super Extractor擴展crx文件

下載ASIN Super Extractor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ASIN Super Extractor is a free tool made to get Amazon Standard Identification Number information from product page you visit on Amazon. It works for Amazon(dot)com and other Amazon related websites. Just visit the page with the products and click on the extension icon to get all the ASINs available from that page. From There you can then copy all ASIN to your clipboard with just one click.                    

擴展基本資訊

名稱 ASIN Super Extractor ASIN Super Extractor
ID fbldpeailkijnbbmgggmddhhngohkbih
官方網址 https://chromewebstore.google.com/detail/asin-super-extractor/fbldpeailkijnbbmgggmddhhngohkbih
簡介 Extract ASIN from amazon product
檔案大小 19.69 KB
安裝次數 324
目前版本 0.0.1
更新時間 2020-08-24
上架時間 2020-06-14
開發者 kiwi merch
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ASIN Super Extractor",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Extract ASIN from amazon product",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_title": "ASIN Super Extractor",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "clipboardWrite",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.amazon.com\/*",
                "*:\/\/www.amazon.fr\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}