Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Vad är Amazon Price Per Unit?
Amazon Price Per Unit är en Chrome-tillägg utvecklad av desmondvehar, och dess huvudfunktion är "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Tilläggsskärmbilder
Ladda ner Amazon Price Per Unit-förlängningens CRX-fil
Ladda ner Amazon Price Per Unit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Officiell webbadress | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Beskrivning | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Filstorlek | 38.04 KB |
Antal Installationer | 172 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-07-17 |
Publiceringsdatum | 2017-07-16 |
Betyg | 2.33/5 Totalt 6 Betyg |
Utvecklare | desmondvehar |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://www.amazon.com |
Hjälpsida URL | https://github.com/dvehar/amazon-price-per-unit |
Stödda Språk | 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": [] } |