Telos Authenticator (Sqrl)

Telos Authenticator (Sqrl)

Universal account authenticator for EOSIO blockchains, powered by Telos' official Sqrl wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Telos-Authenticator-Sqrl",
  "name": "Telos Authenticator (Sqrl)",
  "description": "Universal account authenticator for EOSIO blockchains, powered by Telos' official Sqrl wallet",
  "version": "0.1.0",
  "manifest_version": 2,
  "icons": {
    "128": "128.png"
  },
  "browser_action": {
    "default_title": "Telos Authenticator (Sqrl)"
  },
  "options_page": "index.html#options",
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}