Personal Crypto

Personal Crypto

Chrome Extension for connecting cryptocurrency accounts to Personal Capital

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Personal Crypto",
  "short_name": "Personal Crypto",
  "version": "0.1.3",
  "description": "Chrome Extension for connecting cryptocurrency accounts to Personal Capital",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup/index.html",
    "default_title": "Personal Crypto"
  },
  "icons": {
    "256": "./assets/bitcoin256.png"
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://home.personalcapital.com/page/login/app*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}