Download Amazon Orders
Chrome extension that downloads currently viewed Amazon Orders as a CSV
Download Amazon Orders란 무엇입니까?
Download Amazon Orders은(는) Alex Chapman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that downloads currently viewed Amazon Orders as a CSV"입니다.
Download Amazon Orders 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |