Click Currency

Click Currency

Click Currency is a browser extension that instantly converts any currency on a webpage, just by right-clicking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Click Currency",
  "short_name": "CRN ext",
  "description": "Click Currency is a browser extension that instantly converts any currency on a webpage, just by right-clicking.",
  "version": "1.3.1",
  "options_ui": {
    "page": "./options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/jquery-3.4.1.min.js",
        "scripts/content-script.js"
      ],
      "css": [
        "styles/content_script.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "img/icon32.png",
      "64": "img/icon64.png",
      "128": "img/icon128.png"
    },
    "default_title": "Click Currency"
  },
  "icons": {
    "32": "img/icon32.png",
    "64": "img/icon64.png",
    "100": "img/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "content_security_policy": "script-src 'self'  https://unpkg.com https://code.jquery.com https://gumroad.com/js/gumroad.js; object-src 'self'",
  "background": {
    "scripts": [
      "scripts/jquery-3.4.1.min.js",
      "scripts/background.js"
    ]
  },
  "web_accessible_resources": [
    "img/copy.png"
  ]
}