Amazon Price Per Unit

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

¿Qué es Amazon Price Per Unit?

Amazon Price Per Unit es una extensión de Chrome desarrollada por desmondvehar, y su función principal es "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Amazon Price Per Unit

Descarga archivos de extensión Amazon Price Per Unit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Amazon Price Per Unit Amazon Price Per Unit
ID lnjehpmphflnknefeolneomoophmmije
URL Oficial https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije
Descripción This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Tamaño del Archivo 38.04 KB
Cantidad de Instalaciones 172
Versión Actual 1.1
Última Actualización 2017-07-17
Fecha de Publicación 2017-07-16
Calificación 2.33/5 Total de 6 Calificaciones
Desarrollador desmondvehar
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.amazon.com
URL de la Página de Ayuda https://github.com/dvehar/amazon-price-per-unit
Idiomas Soportados 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": []
}