Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Hvad er Amazon Price Per Unit?
Amazon Price Per Unit er en Chrome-udvidelse udviklet af desmondvehar, og dens hovedfunktion er "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Udvidelsesskærmbilleder
Download Amazon Price Per Unit-udvidelses-CRX-fil
Download Amazon Price Per Unit-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Officiel URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Beskrivelse | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Filstørrelse | 38.04 KB |
Antal Installationer | 172 |
Nuværende Version | 1.1 |
Senest Opdateret | 2017-07-17 |
Udgivelsesdato | 2017-07-16 |
Bedømmelse | 2.33/5 Samlet 6 Bedømmelser |
Udvikler | desmondvehar |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://www.amazon.com |
Hjælpeside-URL | https://github.com/dvehar/amazon-price-per-unit |
Understøttede Sprog | 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": [] } |