Tečaj

Tečaj

Jednostavno izračunajte strane valute na svim stranicama koje posjetite

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.0.6",
  "manifest_version": 2,
  "default_locale": "hr",
  "author": "Matej Posavec",
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js",
      "options.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "keyboard.js",
        "config-keyboard.js",
        "content.js",
        "dom-drag.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Tečaj"
  },
  "icons": {
    "16": "icon_16.png",
    "19": "icon_19.png",
    "48": "icon_48.png",
    "96": "icon_96.png",
    "128": "icon_128.png"
  },
  "options_page": "options.html"
}