BFICLink

BFICLink

The first and most popular BFICLink wallet. Recommended by BFICLink Foundation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BFICLink",
  "version": "2.0.3",
  "version_name": "2.0.3",
  "description": "The first and most popular BFICLink wallet. Recommended by BFICLink Foundation.",
  "author": "Kevin <[email protected]>",
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-VkNnUueDROlYkHq6L+Uv0Mcb+jQg0h8C7+d73ct37QA=' 'sha256-LayQc1iWBC+6WbHHvHZj3uSx3CxrGBHUJBR7si4qf8w=' 'sha256-POEO+wER89cezFVZ27JoP523HJNPMQxmh5Rcz/OZpr4=' 'sha256-IThiKMnsg0UHaLmP7sJxZpd/ohvINImwjxFJyxGFSlk=' https://*.sentry.io https://www.google-analytics.com https://www.googletagmanager.com https://cdnjs.cloudflare.com; object-src 'self'",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "activeTab"
  ],
  "browser_action": {
    "default_popup": "packages/popup/build/index.html",
    "default_title": "BFICLink"
  },
  "icons": {
    "128": "packages/popup/static/icon.png"
  },
  "background": {
    "scripts": [
      "dist/backgroundScript.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "dist/pageHook.js"
  ]
}