Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Amazon Price Per Unit란 무엇입니까?
Amazon Price Per Unit은(는) desmondvehar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown."입니다.
확장 프로그램 스크린샷
Amazon Price Per Unit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you are a savvy shopper that loves to get the best deals this is the extension for you! This extension will show the price for unit next to items where it is not currently shown. Ex: $10.99 ($0.37/Gram) Having the price per unit will allow you to better compare products so you can get the best deals!
확장 프로그램 기본 정보
이름 | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
공식 URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
설명 | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
파일 크기 | 38.04 KB |
설치 횟수 | 172 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-07-17 |
출시 날짜 | 2017-07-16 |
평점 | 2.33/5 총 6 개의 평점 |
개발자 | desmondvehar |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.amazon.com |
도움말 페이지 URL | https://github.com/dvehar/amazon-price-per-unit |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Price Per Unit", "short_name": "Amazon PPU", "description": "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.", "version": "1.1", "permissions": [ "http:\/\/*.amazon.com\/", "https:\/\/*.amazon.com\/" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "icons": { "128": "Amazon PPU.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*" ], "js": [ "jquery.min.js", "myscript.js" ] } ], "page_action": [] } |