Cede.store

Cede.store

Secure gateway to the CeFi

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cede.store",
  "description": "Secure gateway to the CeFi",
  "version": "1.50.1",
  "manifest_version": 3,
  "action": {
    "default_title": "Open Cede.store",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "popup.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://localhost/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "./panda16.png",
    "32": "./panda32.png",
    "48": "./panda48.png",
    "128": "./panda128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms",
    "identity",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "http://*.cede.link/*",
    "https://*.cede.link/*",
    "*://*.binance.com/*",
    "*://*.coinbase.com/*",
    "*://*.kraken.com/*",
    "*://*.hbdm.com/*",
    "*://*.gateio.ws/*",
    "*://*.bitfinex.com/*",
    "*://*.okx.com/*",
    "*://*.kucoin.com/*",
    "*://*.bybit.com/*",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "./background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "inpage.js",
        "*.png",
        "*.md",
        "sendWidget.js",
        "inpageHelper.js",
        "/popup.html"
      ]
    }
  ]
}