Amazon Price Per Unit
This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Wat is Amazon Price Per Unit?
Amazon Price Per Unit is een Chrome-extensie ontwikkeld door desmondvehar, en de belangrijkste functie is "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".
Extensie Screenshots
Download het CRX-bestand van de extensie Amazon Price Per Unit
Download Amazon Price Per Unit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Amazon Price Per Unit |
ID | lnjehpmphflnknefeolneomoophmmije |
Officiële URL | https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije |
Beschrijving | This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown. |
Bestandsgrootte | 38.04 KB |
Aantal Installaties | 172 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2017-07-17 |
Publicatiedatum | 2017-07-16 |
Beoordeling | 2.33/5 Totaal 6 Beoordelingen |
Ontwikkelaar | desmondvehar |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.amazon.com |
Help Pagina-URL | https://github.com/dvehar/amazon-price-per-unit |
Ondersteunde Talen | 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": [] } |