Amazon Price Per Unit

This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.

Cos'è Amazon Price Per Unit?

Amazon Price Per Unit è un'estensione di Chrome sviluppata da desmondvehar, e la sua funzione principale è "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Amazon Price Per Unit

Scarica i file di estensione Amazon Price Per Unit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Amazon Price Per Unit Amazon Price Per Unit
ID lnjehpmphflnknefeolneomoophmmije
URL Ufficiale https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije
Descrizione This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Dimensione del File 38.04 KB
Conteggio Installazioni 172
Versione Corrente 1.1
Ultimo Aggiornamento 2017-07-17
Data di Pubblicazione 2017-07-16
Valutazione 2.33/5 Totale 6 Valutazioni
Sviluppatore desmondvehar
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.amazon.com
URL della Pagina di Aiuto https://github.com/dvehar/amazon-price-per-unit
Lingue Supportate 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": []
}