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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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": []
}