ASIN To Clipboard

Copy ASIN to clipboard from Amazon search results or product page with one mouse click

ASIN To Clipboardคืออะไร?

ASIN To Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pluginssoft และคุณลักษณะหลักของมันคือ "Copy ASIN to clipboard from Amazon search results or product page with one mouse click"

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

screenshot

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

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

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

                        Allows copy Amazon ASIN to clipboard with one mouse click
Hover mouse over item in search results and you will see
the extension's small image in the left top corner.
Click on image or on tooltip and ASIN will be copied to clipboard.
Version 2.0 allows to copy the ASIN from search list and product page.                    

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

ชื่อ ASIN To Clipboard ASIN To Clipboard
ID jaidckbjpfklefknljimeokegabemhia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/asin-to-clipboard/jaidckbjpfklefknljimeokegabemhia
คำอธิบาย Copy ASIN to clipboard from Amazon search results or product page with one mouse click
ขนาดไฟล์ 14.81 KB
จำนวนการติดตั้ง 82
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2020-08-15
วันที่เผยแพร่ 2019-08-17
คะแนน 3.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา pluginssoft
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ASIN To Clipboard",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Copy ASIN to clipboard from Amazon search results or product page with one mouse click",
    "author": "extensions-soft.com",
    "icons": {
        "128": "main.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "http:\/\/*.amazon.com\/s*",
                "https:\/\/*.amazon.com\/s*",
                "http:\/\/*.amazon.co.uk\/s*",
                "https:\/\/*.amazon.co.uk\/s*",
                "http:\/\/*.amazon.de\/s*",
                "https:\/\/*.amazon.de\/s*",
                "http:\/\/*.amazon.fr\/s*",
                "https:\/\/*.amazon.fr\/s*",
                "http:\/\/*.amazon.es\/s*",
                "https:\/\/*.amazon.es\/s*",
                "http:\/\/*.amazon.it\/s*",
                "https:\/\/*.amazon.it\/s*",
                "http:\/\/*.amazon.nl\/s*",
                "https:\/\/*.amazon.nl\/s*",
                "http:\/\/*.amazon.in\/s*",
                "https:\/\/*.amazon.in\/s*",
                "http:\/\/*.amazon.cn\/s*",
                "https:\/\/*.amazon.cn\/s*",
                "http:\/\/*.amazon.ca\/s*",
                "https:\/\/*.amazon.ca\/s*",
                "http:\/\/*.amazon.br\/s*",
                "https:\/\/*.amazon.br\/s*",
                "http:\/\/*.amazon.com.mx\/s*",
                "https:\/\/*.amazon.com.mx\/s*",
                "http:\/\/*.amazon.co.jp\/s*",
                "https:\/\/*.amazon.co.jp\/s*",
                "http:\/\/*.amazon.au\/s*",
                "https:\/\/*.amazon.au\/s*"
            ],
            "run_at": "document_end"
        },
        {
            "all_frames": false,
            "js": [
                "contentProductPage.js"
            ],
            "css": [
                "contentProductPage.css"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*dp\/*",
                "https:\/\/*.amazon.co.uk\/*dp\/*",
                "https:\/\/*.amazon.de\/*dp\/*",
                "https:\/\/*.amazon.fr\/*dp\/*",
                "https:\/\/*.amazon.es\/*dp\/*",
                "https:\/\/*.amazon.it\/*dp\/*",
                "https:\/\/*.amazon.nl\/*dp\/*",
                "https:\/\/*.amazon.in\/*dp\/*",
                "https:\/\/*.amazon.cn\/*dp\/*",
                "https:\/\/*.amazon.ca\/*dp\/*",
                "https:\/\/*.amazon.br\/*dp\/*",
                "https:\/\/*.amazon.com.mx\/*dp\/*",
                "https:\/\/*.amazon.co.jp\/*dp\/*",
                "https:\/\/*.amazon.au\/*dp\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "iconasin.png"
    ]
}