Amazon Harvest - Collect Sellers
Collects all sellers and prices for Amazon products.
Amazon Harvest - Collect Sellersคืออะไร?
Amazon Harvest - Collect Sellers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Petar Strainovic และคุณลักษณะหลักของมันคือ "Collects all sellers and prices for Amazon products."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Harvest - Collect Sellers
ดาวน์โหลดไฟล์ส่วนขยาย Amazon Harvest - Collect Sellers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Go to the sellers page of a specific product on Amazon.com and click on the extension icon. It will automatically collect all the sellers and their prices from that page. Click on the 'Copy' button and your info is ready to be pasted anywhere you want. If there are many sellers and they are listed on multiple pages you can repeat the process on each page. Working on smile.amazon.com, www.amazon.com, amazon.ca, amazon.fr, amazon.co.uk, amazon.it, amazon.es, amazon.de If you want to support me, or you have suggestions or need to make the extension suitable for you, feel free to contact me at [email protected] Looking forward to your comments! If you want to collect info from detail page for a product - such as Title, Customer Review No., Price, ASIN, Rank, and UPC - you can try my other extension "Amazon Harvest".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nhhgdgpeoeplmidfokckndbncdkdfhgf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/amazon-harvest-collect-se/nhhgdgpeoeplmidfokckndbncdkdfhgf |
คำอธิบาย | Collects all sellers and prices for Amazon products. |
ขนาดไฟล์ | 9.26 KB |
จำนวนการติดตั้ง | 403 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2016-06-01 |
วันที่เผยแพร่ | 2016-06-01 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Petar Strainovic |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Harvest - Collect Sellers", "description": "Collects all sellers and prices for Amazon products.", "version": "1.0.2", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "backgroundscript.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.amazon.com\/gp\/offer-listing\/*", "https:\/\/www.amazon.com\/gp\/offer-listing\/*", "http:\/\/smile.amazon.com\/gp\/offer-listing\/*", "https:\/\/smile.amazon.com\/gp\/offer-listing\/*", "https:\/\/www.amazon.ca\/gp\/offer-listing\/*", "http:\/\/www.amazon.de\/gp\/offer-listing\/*", "https:\/\/www.amazon.de\/gp\/offer-listing\/*", "http:\/\/www.amazon.it\/gp\/offer-listing\/*", "https:\/\/www.amazon.it\/gp\/offer-listing\/*", "https:\/\/www.amazon.fr\/gp\/offer-listing\/*", "https:\/\/www.amazon.es\/gp\/offer-listing\/*", "https:\/\/www.amazon.co.uk\/gp\/offer-listing\/*" ], "js": [ "contentscript.js" ] } ], "permissions": [ "activeTab", "clipboardWrite" ] } |