waellet

waellet

waellet - aeternity browser extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "waellet",
  "description": "waellet - aeternity browser extension",
  "version": "0.5.7",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "unlimitedStorage",
    "videoCapture",
    "activeTab",
    "clipboardWrite",
    "notifications"
  ],
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "waellet",
    "default_popup": "popup/popup.html"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "inject.js",
    "phishing/phishing.html",
    "phishing/phishing.js",
    "aepp.js",
    "popup/CameraRequestPermission.html"
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  }
}