Pelagus (Iron Age)

Pelagus (Iron Age)

The community owned and operated Quai Iron Age Testnet wallet (Deprecated).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pelagus (Iron Age)",
  "version": "0.5.4",
  "description": "The community owned and operated Quai Iron Age Testnet wallet (Deprecated).",
  "homepage_url": "https://pelaguswallet.io",
  "author": "https://pelaguswallet.io",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "object-src 'self'; script-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "window-provider.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://localhost/*",
        "http://127.0.0.1/*",
        "https://*/*"
      ],
      "js": [
        "provider-bridge.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+T",
        "mac": "Alt+T",
        "chromeos": "Alt+T",
        "linux": "Alt+T"
      }
    }
  },
  "icons": {
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "Pelagus (Iron Age)",
    "default_popup": "popup.html"
  },
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "minimum_chrome_version": "88",
  "externally_connectable": {
    "ids": []
  }
}