UPC Extractor
Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot.
UPC Extractorคืออะไร?
UPC Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kaleb7943 และคุณลักษณะหลักของมันคือ "Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UPC Extractor
ดาวน์โหลดไฟล์ส่วนขยาย UPC Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows the user to easily find the Universal Product Code (UPC) for any given item on the websites of major retailers. It will automatically pull the UPC upon loading a product page from a supported website, and it allows the user to re-pull the UPC if the value is lost or overwritten without refreshing the page. It also provides a "copy to clipboard" button for easy copy/paste functionality. NOTE: For Amazon, the ASIN is pulled in place of the UPC. Supported retailers: Walmart, Target, Best Buy, Lowes, Amazon, Home Depot, and more.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | UPC Extractor |
ID | egajjcdefaodnabipbbcapleelahifnd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/upc-extractor/egajjcdefaodnabipbbcapleelahifnd |
คำอธิบาย | Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot. |
ขนาดไฟล์ | 15.45 KB |
จำนวนการติดตั้ง | 275 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2024-01-13 |
วันที่เผยแพร่ | 2023-11-01 |
ผู้พัฒนา | kaleb7943 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "UPC Extractor", "version": "1.3", "description": "Extracts the UPC code from a product page. Supports Walmart, Target, Best Buy, Lowes, Amazon, and Home Depot.", "permissions": [ "activeTab", "clipboardWrite", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.walmart.com\/*", "https:\/\/www.walmart.ca\/*", "https:\/\/www.walmart.co.uk\/*", "https:\/\/www.target.com\/*", "https:\/\/www.target.ca\/*", "https:\/\/www.target.co.uk\/*", "https:\/\/www.bestbuy.com\/*", "https:\/\/www.bestbuy.ca\/*", "https:\/\/www.bestbuy.co.uk\/*", "https:\/\/www.lowes.com\/*", "https:\/\/www.lowes.ca\/*", "https:\/\/www.lowes.co.uk\/*", "https:\/\/www.homedepot.com\/*", "https:\/\/www.homedepot.ca\/*", "https:\/\/www.homedepot.co.uk\/*", "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.newegg.com\/*", "https:\/\/www.newegg.ca\/*", "https:\/\/www.newegg.co.uk\/*" ], "js": [ "content.js", "scripts\/JsBarcode.code128.min.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/barcode.png", "48": "images\/barcode.png", "128": "images\/barcode.png" } }, "icons": { "16": "images\/barcode.png", "48": "images\/barcode.png", "128": "images\/barcode.png" } } |