Chrome Currency Converter

Chrome Currency Converter

Automatically convert in-page prices to the selected currency using current rates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Currency Converter",
  "short_name": "CCC",
  "description": "Automatically convert in-page prices to the selected currency using current rates.",
  "version": "6.8.17",
  "author": "George Papadakis",
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "Toggle CCC conversion"
    },
    "rates": {
      "suggested_key": {
        "default": "Ctrl+Shift+T",
        "mac": "MacCtrl+Shift+T"
      },
      "description": "Current rates"
    }
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "dist/script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "html/options.html"
  },
  "web_accessible_resources": [
    "html/test.html",
    "html/*",
    "assets/*"
  ],
  "content_security_policy": "script-src 'unsafe-eval' 'self' https://www.google-analytics.com https://ssl.google-analytics.com https://www.google-analytics.com; object-src 'self';",
  "browser_action": {
    "default_icon": {
      "16": "assets/browser-action/16.png",
      "24": "assets/browser-action/24.png",
      "32": "assets/browser-action/32.png"
    },
    "default_title": "Chrome Currency Converter",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "assets/icon/16.png",
    "48": "assets/icon/48.png",
    "128": "assets/icon/128.png"
  }
}