ASIN Super Extractor

Extract ASIN from amazon product

ASIN Super Extractorคืออะไร?

ASIN Super Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kiwi merch และคุณลักษณะหลักของมันคือ "Extract ASIN from amazon product"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ASIN Super Extractor

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
        }
    ]
}