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.

Was ist Amazon Prices for Ireland?

Amazon Prices for Ireland ist eine Chrome-Erweiterung, die von Adrian Smith entwickelt wurde, und ihr Hauptmerkmal ist "Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Amazon Prices for Ireland-Erweiterungs-CRX-Datei herunterladen

Laden Sie Amazon Prices for Ireland-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Amazon Prices for Ireland Amazon Prices for Ireland
ID ljbghemliajpgabhbaecbipkgngkoalf
Offizielle URL https://chromewebstore.google.com/detail/amazon-prices-for-ireland/ljbghemliajpgabhbaecbipkgngkoalf
Beschreibung Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.
Dateigröße 13.3 KB
Installationsanzahl 371
Aktuelle Version 1.8
Letztes Update 2013-06-12
Veröffentlichungsdatum 2013-06-12
Bewertung 2.81/5 Insgesamt 26 Bewertungen
Entwickler Adrian Smith
Zahlungsart free
Erweiterungswebsite http://github.com/adrian/Amazon-Prices-for-Ireland-Chrome-Extension
Unterstützte Sprachen 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"
            ]
        }
    ]
}