EOS Authenticator

EOS Authenticator

A Chrome extension for users to sign transactions from EOSIO apps. The Chrome extension provides the following: - It provides…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "EOS Authenticator",
  "name": "EOS Authenticator",
  "version": "0.1.1",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "EOS Authenticator"
  },
  "options_page": "index.html#options",
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}