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
官方網址 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"
            ]
        }
    ]
}