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.

Qu'est-ce que Amazon Prices for Ireland ?

Amazon Prices for Ireland est une extension Chrome développée par Adrian Smith, et sa fonction principale est "Decorate product pages on amazon.co.uk with the equivalent Irish price. This price will be in euro and include the Irish VAT rate.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Amazon Prices for Ireland

Téléchargez les fichiers d'extension Amazon Prices for Ireland au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Amazon Prices for Ireland Amazon Prices for Ireland
ID ljbghemliajpgabhbaecbipkgngkoalf
URL Officiel https://chromewebstore.google.com/detail/amazon-prices-for-ireland/ljbghemliajpgabhbaecbipkgngkoalf
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.
Taille du Fichier 13.3 KB
Nombre d'Installations 371
Version Actuelle 1.8
Dernière Mise à Jour 2013-06-12
Date de Publication 2013-06-12
Évaluation 2.81/5 Total 26 Évaluations
Développeur Adrian Smith
Type de Paiement free
Site Web de l'Extension http://github.com/adrian/Amazon-Prices-for-Ireland-Chrome-Extension
Langues Prises en Charge 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"
            ]
        }
    ]
}