Stargazer Wallet

Stargazer Wallet

Cross-chain compatible wallet for Constellation and Ethereum

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stargazer Wallet",
  "version": "4.1.1",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "Cross-chain compatible wallet for Constellation and Ethereum",
  "homepage_url": "https://constellationnetwork.io/",
  "short_name": "stargazer-wallet-ext",
  "permissions": [
    "https://www.dagexplorer.io/",
    "https://*.coingecko.com/",
    "https://*.constellationnetwork.io/",
    "http://*.constellationnetwork.io:9000/",
    "chrome://favicon/",
    "https://assets.coingecko.com/",
    "https://*.googleusercontent.com/*",
    "https://*.opensea.io/*",
    "https://*.exolix.com/*",
    "https://*.seadn.io/*",
    "https://ipfs.io/*",
    "https://openseauserdata.com/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; img-src chrome://favicon https://assets.coingecko.com https://*.amazonaws.com https://*.googleusercontent.com https://*.opensea.io https://exolix.com https://*.seadn.io https://ipfs.io https://openseauserdata.com",
  "author": "Stardust Collective",
  "minimum_chrome_version": "63",
  "browser_action": {
    "default_popup": "app.html",
    "default_icon": {
      "16": "/assets/icons/favicon-16.png",
      "32": "/assets/icons/favicon-32.png",
      "48": "/assets/icons/favicon-48.png",
      "128": "/assets/icons/favicon-128.png"
    },
    "default_title": "Stargazer",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "js/injectedScript.bundle.js"
  ]
}