GoodRelations Currency Converter

GoodRelations Currency Converter

This extension converts foreign currencies found in GoodRelations mark-up.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 2,
  "version": "0.2.3",
  "default_locale": "en_US",
  "description": "__MSG_extDesc__",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "linkeddataapi.js",
        "amazon.js",
        "content_script.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "page_action": {
    "default_name": "Creative Commons Laser Highlighter",
    "default_icon": "icon.png",
    "popup": "popup.html"
  }
}