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 là gì?
Amazon Price Per Unit là một tiện ích mở rộng Chrome được phát triển bởi desmondvehar, và tính năng chính của nó là "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Amazon Price Per Unit
Tải xuống các tệp mở rộng Amazon Price Per Unit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
URL Chính Thức | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Mô tả | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Kích Thước Tệp | 38.04 KB |
Số Lần Cài Đặt | 172 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2017-07-17 |
Ngày Phát Hành | 2017-07-16 |
Đánh Giá | 2.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | desmondvehar |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.amazon.com |
URL Trang Trợ Giúp | https://github.com/dvehar/amazon-price-per-unit |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |