Amazon Price Per Unit

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

Что такое Amazon Price Per Unit?

Amazon Price Per Unit - это расширение Chrome, разработанное desmondvehar, и его основная функция - "This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Amazon Price Per Unit

Скачайте файлы расширений Amazon Price Per Unit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название Amazon Price Per Unit Amazon Price Per Unit
ID lnjehpmphflnknefeolneomoophmmije
Официальный URL https://chromewebstore.google.com/detail/amazon-price-per-unit/lnjehpmphflnknefeolneomoophmmije
Описание This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.
Размер файла 38.04 KB
Количество установок 172
Текущая Версия 1.1
Последнее Обновление 2017-07-17
Дата публикации 2017-07-16
Рейтинг 2.33/5 Всего 6 оценок
Разработчик desmondvehar
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.amazon.com
URL страницы помощи https://github.com/dvehar/amazon-price-per-unit
Поддерживаемые языки 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": []
}