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是由desmondvehar開發的Chrome擴展程式,該擴展的主要功能是“This extension shows the price per unit (once, pound, etc.) for Amazon items where it is not already shown.”。

擴展截圖

screenshot
screenshot

下載Amazon Price Per Unit擴展crx文件

下載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
官方網址 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": []
}