Alby Guides
Alby Account Dashboard
  • 👋 Welcome, bee!
  • Alby Hub
  • Browser Extension
  • Alby Go
  • Alby Account
  • Developer Docs
  • ðŸ‘ūFeatures
    • ðŸ’ģManage multiple wallets
    • ðŸ’ĩCreate and change budgets
    • 🔂Send and receive bitcoin
    • ðŸĨManage site connections
    • 🗝ïļMaster Key
    • ðŸĶĪNostr
    • 🌊Liquid
    • ⚖ïļHOLD Payments
  • 🔗Link wallet
    • Alby web Account
    • Umbrel
    • Alby Hub via NWC link
    • LND
    • No limits - quick & easy
  • ðŸŽŪDiscover apps
  • 🐞Debugging
    • Connecting your LN node
    • Google Chrome
    • Mozilla Firefox
    • Using nightly builds
  • ❓FAQ
    • How do I install the Alby Browser Extension?
    • Why do I need a unlock password?
    • Can I trust the software?
    • Lost Password
    • Does the extension work on Mobile?
    • Implementing payments and authentication
    • Can I use Alby with the Tor Browser?
    • What is the Alby Companion App?
    • How to enable Alby only on specific websites?
    • Can I connect LND with readonly permissions?
    • How to use Alby with nosft.xyz to get NFT ordinals/inscriptions?
    • How to access my old account in apps with the Alby Extension
    • What permission does the extension require?
    • How can I run my own Lightning node?
    • Migrate from old LNDHub setup
    • I lost my Nostr ID when making a new account
Powered by GitBook
LogoLogo

Our content

  • Website
  • Blog
  • GitHub

Follow us

  • Nostr
  • Twitter / X
  • Youtube

Contact us

  • E-mail
  • Community Chat
  • Open Hours

Your bitcoin & nostr companion / from 🐝 with ðŸ§Ą

On this page

Was this helpful?

  1. FAQ

What permission does the extension require?

This is the list of requirements required to run the Alby extension:

...
"host_permissions": ["*://*/*"],
"permissions": [
    "identity"
    "nativeMessaging",
    "notifications",
    "scripting",
    "storage",
    "tabs",
    "unlimitedStorage"
]
...

Host Permissions Allows the extension to read information from websites you visit (e.g. meta tags with lightning information) and inject JavaScript to provide websites with APIs such as WebLN, Nostr, webbtc and liquid.

Identity Needed to connect to your Alby Account via OAuth2 APIs.

Native messaging If you want to connect your own node via TOR this allows the extension to communicate with the Alby Companion App (which connects your browser to the TOR network)

Notifications Alby notifies you of successful or failed payments through browser notifications.

Scripting Allows Alby to inject JavaScript into websites to offers APIs for websites to interact with your wallet.

Storage Allows the extension to save credentials (always encrypted with your password) and other information (e.g. permissions you gave to certain websites, etc).

Tabs Allows to get the active tab and fetch payment information provided by websites in their meta tags.

Unlimited Storage Storage is usually hard-limited to 10 MB, this is mostly just a preemptive measure for users not to hit this limit.

Was this helpful?

❓