Amazon Filter
An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.
Amazon Filter란 무엇입니까?
Amazon Filter은(는) Manosai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts."입니다.
확장 프로그램 스크린샷
Amazon Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Amazon Filter helps you sort Amazon search results by the fastest delivery time, item availability, and unsponsored items. Finding exactly what you want to order from Amazon can be a pain if you need to think about delivery times, availability, and relevance. With Amazon Filter, you don’t need to fumble around with Amazon’s default options while looking at results. Just search as you normally would, and select a filter option on the extension to sort your results. You don’t even need to reload the page. Amazon Filter is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Amazon.com, Inc. All product and company names are the registered trademarks of their original owners. The use of any trade name or trademark is for identification and reference purposes only and does not imply any association with the trademark holder of their product brand. (May 2020): First release with support for 3 filters. We may consider adding support for precise estimated delivery dates and default preferences in future release.
확장 프로그램 기본 정보
이름 | Amazon Filter |
ID | pfbdkdnlimiidmpnmknkfhbgpbiodohi |
공식 URL | https://chromewebstore.google.com/detail/amazon-filter/pfbdkdnlimiidmpnmknkfhbgpbiodohi |
설명 | An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts. |
파일 크기 | 67.18 KB |
설치 횟수 | 1,674 |
현재 버전 | 1.2 |
최근 업데이트 | 2020-06-18 |
출시 날짜 | 2020-06-17 |
평점 | 2.22/5 총 9 개의 평점 |
개발자 | Manosai |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Filter", "version": "1.2", "description": "An extension that sorts Amazon search results by fastest estimated delivery date, stock availability, and unsponsored posts.", "permissions": [ "declarativeContent", "tabs", "https:\/\/www.amazon.com\/", "http:\/\/www.amazon.com\/" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_popup": "backup_popup.html", "default_icon": { "16": "images\/bw_get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/", "https:\/\/www.amazon.com\/*" ], "js": [ "jquery.js", "main.js" ], "run_at": "document_start" } ], "manifest_version": 2 } |