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.

Wat is Amazon Prices for Ireland?

Amazon Prices for Ireland is een Chrome-extensie ontwikkeld door Adrian Smith, en de belangrijkste functie is "Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Amazon Prices for Ireland

Download Amazon Prices for Ireland-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Amazon Prices for Ireland Amazon Prices for Ireland
ID ljbghemliajpgabhbaecbipkgngkoalf
Officiële URL https://chromewebstore.google.com/detail/amazon-prices-for-ireland/ljbghemliajpgabhbaecbipkgngkoalf
Beschrijving Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.
Bestandsgrootte 13.3 KB
Aantal Installaties 371
Huidige Versie 1.8
Laatst Bijgewerkt 2013-06-12
Publicatiedatum 2013-06-12
Beoordeling 2.81/5 Totaal 26 Beoordelingen
Ontwikkelaar Adrian Smith
Betalingswijze free
Extensiewebsite http://github.com/adrian/Amazon-Prices-for-Ireland-Chrome-Extension
Ondersteunde Talen 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"
            ]
        }
    ]
}