SonicxLink

The first and most popular SonicX wallet. Recommended by SonicX Foundation.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SonicxLink",
  "version": "1.0.5",
  "version_name": "1.0.5",
  "description": "The first and most popular SonicX wallet. Recommended by SonicX Foundation.",
  "author": "Kevin <[email protected]>",
  "content_security_policy": "script-src 'self' 'unsafe-eval' '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": "SonicxLink"
  },
  "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"
  ]
}