Bridge Passport

Bridge Passport

Extension to allow users to create, manage, and use their Bridge Identity on the Bridge Protocol Network

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bridge Passport",
  "version": "3.3.1",
  "manifest_version": 2,
  "description": "Extension to allow users to create, manage, and use their Bridge Identity on the Bridge Protocol Network",
  "icons": {
    "16": "icons/icon_16.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon_19.png",
      "38": "icons/icon_38.png"
    },
    "default_title": "Bridge Passport",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bridgeprotocol.io/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}