Conveuro

Conveuro

Instantly convert currencies with a simple text selection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Conveuro",
  "version": "1.2.3",
  "author": "Hristiyan Dodov",
  "description": "Instantly convert currencies with a simple text selection.",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "https://api.conveuro.com/"
  ],
  "web_accessible_resources": [
    "chrome-extension://hchlbehbbfdiogoeigibfgjpcmhogaop/**/*",
    "content-script/**/*",
    "event-page/**/*",
    "popup/**/*",
    "img/**/*"
  ],
  "browser_action": {
    "default_popup": "popup/index.html"
  },
  "background": {
    "scripts": [
      "event-page/js/script.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "css": [
        "content-script/css/main.css"
      ],
      "js": [
        "content-script/js/script.js"
      ],
      "matches": [
        "file:///*",
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}