NasExtWallet

NasExtWallet

The extension for Nebulas Dapp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NasExtWallet",
  "default_locale": "en",
  "description": "The extension for Nebulas Dapp",
  "version": "0.2.8.2",
  "manifest_version": 2,
  "icons": {
    "19": "images/icon_19.png",
    "38": "images/icon_38.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "https://*.nebulas.io/",
    "activeTab",
    "*://*/",
    "storage"
  ],
  "background": {
    "scripts": [
      "html/lib/nebulas.js",
      "html/js/1-localSave.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Nebulas",
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_popup": "html/sendNas.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "inpage.js"
  ],
  "options_page": "html/options.html",
  "homepage_url": "https://github.com/nebulasio/WebExtensionWallet"
}