Pertinax wallet for Everscale blockchain

Pertinax wallet for Everscale blockchain

Pertinax wallet for Everscale allows you to create new accounts, make backups, restore them, send transactions, use DApp, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "homepage_url": "https://pertinaxwallet.com/",
  "version": "2.2.0",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDescription__",
  "manifest_version": 2,
  "author": "mtw developers",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Shift+W",
        "mac": "Alt+Shift+W",
        "chromeos": "Alt+Shift+W",
        "linux": "Alt+Shift+W"
      }
    }
  },
  "icons": {
    "16": "assets/img/icon-16.png",
    "32": "assets/img/icon-32.png",
    "128": "assets/img/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "browser-polyfill.js",
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "assets/img/icon-32.png",
    "default_title": "Pertinax wallet",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "assets/*",
    "inpage.js"
  ]
}