Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
What is Amazon Price Per Unit?
Amazon Price Per Unit is a Chrome extension developed by desmondvehar, and its main feature is "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Extension Screenshots
Download Amazon Price Per Unit Extension CRX File
Download Amazon Price Per Unit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Official URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Description | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
File Size | 38.04 KB |
Installation Count | 172 |
Current Version | 1.1 |
Last Updated | 2017-07-17 |
Publish Date | 2017-07-16 |
Rating | 2.33/5 Total 6 Ratings |
Developer | desmondvehar |
[email protected] | |
Payment Type | free |
Extension Website | http://www.amazon.com |
Help Page URL | https://github.com/dvehar/amazon-price-per-unit |
Supported Languages | 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": [] } |