LEDGIS Wallet Chrome Extension

LEDGIS Wallet Chrome Extension

Store ledgis key & Sign transaction

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LEDGIS Wallet Chrome Extension",
  "short_name": "LEDGIS Wallet Chrome Extension",
  "version": "1.6.1",
  "description": "Store ledgis key & Sign transaction",
  "action": {
    "default_popup": "popup.html",
    "default_title": "ledgis"
  },
  "icons": {
    "16": "ledgis.png",
    "48": "ledgis.png",
    "128": "ledgis.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.ledx.io/*",
      "*://localhost:*/*",
      "*://146.56.136.94:*/*",
      "*://*.realcollection.gallery/*",
      "*://*.lemonadeprotocol.com/*",
      "*://*.nftnara.io/*",
      "*://*.metaspacemium.com/*",
      "*://*.ledgisnft.io/*",
      "*://*.picksgood.com/*",
      "*://real-collection-frontend-git-develop-ibct.vercel.app/*",
      "*://real-collection-frontend-git-staging-ibct.vercel.app/*",
      "*://dev-picksgood.vercel.app/*",
      "*://picksgood.vercel.app/*"
    ],
    "accepts_tls_channel_id": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}