NBP Currency Converter

NBP Currency Converter

Currencies based on Polish National Bank current average exchange rates of foreign currencies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.4.4",
  "description": "__MSG_extensionDescription__",
  "default_locale": "pl",
  "icons": {
    "16": "resources/icons/icon_16.png",
    "18": "resources/icons/icon_18.png",
    "19": "resources/icons/icon_19.png",
    "32": "resources/icons/icon_32.png",
    "48": "resources/icons/icon_48.png",
    "64": "resources/icons/icon_64.png",
    "128": "resources/icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "resources/icons/icon_16.png",
      "18": "resources/icons/icon_18.png",
      "19": "resources/icons/icon_19.png",
      "32": "resources/icons/icon_32.png",
      "48": "resources/icons/icon_48.png"
    },
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html",
    "browser_style": true
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true,
    "browser_style": true,
    "chrome_style": true
  },
  "permissions": [
    "*://www.nbp.pl/*",
    "*://*.nbp.pl/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ]
}