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
公式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
Eメール [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": []
}