Nalfe

Nalfe

Nalfe makes it easy to build Bubble apps including travel marketplaces, NFT platforms, and productivity tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nalfe",
  "description": "Nalfe makes it easy to build Bubble apps including travel marketplaces, NFT platforms, and productivity tools.",
  "version": "3.0.13",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "/images/nalfe_logo_square_16.png",
      "32": "/images/nalfe_logo_square_32.png",
      "48": "/images/nalfe_logo_square_48.png",
      "128": "/images/nalfe_logo_square_128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/images/nalfe_logo_square_16.png",
    "32": "/images/nalfe_logo_square_32.png",
    "48": "/images/nalfe_logo_square_48.png",
    "128": "/images/nalfe_logo_square_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bubble.is/",
        "https://bubble.io/*"
      ],
      "js": [
        "/nalfe_library/content_scripts.js"
      ],
      "css": [
        "/nalfe_library/nalfe_library.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/install/content_scripts.js"
      ],
      "css": [
        "/install/install.css"
      ],
      "exclude_matches": [
        "https://*.bubble.is/",
        "https://bubble.io/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://jasonelle-test.bubbleapps.io/*",
      "https://www.nalfe.com/*"
    ]
  }
}