Amazon Prices for Ireland

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.

Merlin
Additional files are visible only to premium users

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": {
    "16": "images/logo-16.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.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"
      ]
    }
  ]
}