Download Amazon Orders
Chrome extension that downloads currently viewed Amazon Orders as a CSV
Download Amazon Ordersคืออะไร?
Download Amazon Orders เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Chapman และคุณลักษณะหลักของมันคือ "Chrome extension that downloads currently viewed Amazon Orders as a CSV"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download Amazon Orders
ดาวน์โหลดไฟล์ส่วนขยาย Download Amazon Orders ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Allows you to download a CSV file containing the details of the Amazon Orders that are visible in the current tab. Supports regular orders and digital orders. How to use: 1. Install the Extension 2. Visit the Orders page in your Amazon Account 3. An icon will appear in the search bar 4. Click the icon and a CSV file will be downloaded containing the Order details This extension has only been tested with Amazon.com in the US. It does not download all your orders, only the ones on the current page. Amazon provides an Order Report with similar information, however, that does not include your digital orders.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Download Amazon Orders |
ID | calkeehfhffaekgmdpllhgnadjbonofc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/download-amazon-orders/calkeehfhffaekgmdpllhgnadjbonofc |
คำอธิบาย | Chrome extension that downloads currently viewed Amazon Orders as a CSV |
ขนาดไฟล์ | 5.01 KB |
จำนวนการติดตั้ง | 24 |
เวอร์ชันปัจจุบัน | 0.0.0.3 |
อัปเดตครั้งล่าสุด | 2018-05-27 |
วันที่เผยแพร่ | 2018-05-27 |
ผู้พัฒนา | Alex Chapman |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Download Amazon Orders", "description": "Chrome extension that downloads currently viewed Amazon Orders as a CSV", "version": "0.0.0.3", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "order.png", "default_title": "Download Amazon Orders" }, "permissions": [ "declarativeContent" ] } |