Alby - Bitcoin Lightning Wallet & Nostr

Alby - Bitcoin Lightning Wallet & Nostr

Your Bitcoin Lightning wallet and companion for accessing Bitcoin and Nostr apps, payments across the globe and passwordless logins.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Alby - Bitcoin Wallet for Lightning & Nostr",
  "version": "3.7.0",
  "icons": {
    "16": "assets/icons/alby_icon_yellow_16x16.png",
    "32": "assets/icons/alby_icon_yellow_32x32.png",
    "48": "assets/icons/alby_icon_yellow_48x48.png",
    "128": "assets/icons/alby_icon_yellow_128x128.png"
  },
  "description": "Your Bitcoin Lightning wallet and companion for accessing Bitcoin and Nostr apps, digital payments and passwordless logins.",
  "homepage_url": "https://getAlby.com/",
  "permissions": [
    "nativeMessaging",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage",
    "*://*/*",
    "identity"
  ],
  "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
  "author": "Alby",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/alby_icon_yellow_16x16.png",
      "32": "assets/icons/alby_icon_yellow_32x32.png",
      "48": "assets/icons/alby_icon_yellow_48x48.png",
      "128": "assets/icons/alby_icon_yellow_128x128.png"
    },
    "theme_icons": [
      {
        "dark": "assets/icons/alby_icon_yellow_16x16.png",
        "light": "assets/icons/alby_icon_yellow_dark_16x16.png",
        "size": 16
      },
      {
        "dark": "assets/icons/alby_icon_yellow_32x32.png",
        "light": "assets/icons/alby_icon_yellow_dark_32x32.png",
        "size": 32
      },
      {
        "dark": "assets/icons/alby_icon_yellow_48x48.png",
        "light": "assets/icons/alby_icon_yellow_dark_48x48.png",
        "size": 48
      },
      {
        "dark": "assets/icons/alby_icon_yellow_128x128.png",
        "light": "assets/icons/alby_icon_yellow_dark_128x128.png",
        "size": 128
      }
    ],
    "default_title": "Alby - Bitcoin Wallet for Lightning & Nostr",
    "browser_style": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+A"
      }
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "browser_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/contentScriptOnStart.bundle.js",
        "js/contentScriptWebLN.bundle.js",
        "js/contentScriptAlby.bundle.js",
        "js/contentScriptLiquid.bundle.js",
        "js/contentScriptNostr.bundle.js",
        "js/contentScriptWebBTC.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/inpageScript.bundle.js"
  ]
}