Amazon Prices for Ireland

Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.

Amazon Prices for Irelandとは何ですか?

Amazon Prices for IrelandはAdrian Smithによって開発されたChromeの拡張機能で、その主な機能は「Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Amazon Prices for Ireland拡張機能のCRXファイルをダウンロード

Amazon Prices for Ireland拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Even though amazon.co.uk ship to Ireland they don't price their products in Euro. It's not until we reach the very last page of the order process that we see the full Euro value of the order with Irish VAT applied.

What this plugin does is update each product page with the equivalent Euro price. The GBP to EUR rate is retrieved in real time from Yahoo Finance. The Irish VAT rate of 23% is included except on books which are exempt from VAT.

This extension is also available for Firefox as a Greasemonkey script http://userscripts.org/scripts/show/64262.                    

拡張機能の基本情報

名前 Amazon Prices for Ireland Amazon Prices for Ireland
ID ljbghemliajpgabhbaecbipkgngkoalf
公式URL https://chromewebstore.google.com/detail/amazon-prices-for-ireland/ljbghemliajpgabhbaecbipkgngkoalf
説明 Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.
ファイルサイズ 13.3 KB
インストール数 371
現在のバージョン 1.8
最終更新日 2013-06-12
公開日 2013-06-12
評価 2.81/5 合計 26 レビュー
開発者 Adrian Smith
支払い方法 free
拡張機能のウェブサイト http://github.com/adrian/Amazon-Prices-for-Ireland-Chrome-Extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Prices for Ireland",
    "version": "1.8",
    "description": "Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.",
    "icons": {
        "128": "images\/logo-128.png",
        "48": "images\/logo-48.png",
        "16": "images\/logo-16.png"
    },
    "permissions": [
        "http:\/\/download.finance.yahoo.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "http:\/\/amazon.co.uk\/*",
                "https:\/\/amazon.co.uk\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}