Amazon Price Per Unit

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

Qu'est-ce que Amazon Price Per Unit ?

Amazon Price Per Unit est une extension Chrome développée par desmondvehar, et sa fonction principale est "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Amazon Price Per Unit

Téléchargez les fichiers d'extension Amazon Price Per Unit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Amazon Price Per Unit Amazon Price Per Unit
ID lnjehpmphflnknefeolneomoophmmije
URL Officiel https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije
Description This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Taille du Fichier 38.04 KB
Nombre d'Installations 172
Version Actuelle 1.1
Dernière Mise à Jour 2017-07-17
Date de Publication 2017-07-16
Évaluation 2.33/5 Total 6 Évaluations
Développeur desmondvehar
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.amazon.com
URL de la Page d'Aide https://github.com/dvehar/amazon-price-per-unit
Langues Prises en Charge 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": []
}