Eyelet editor

Eyelet editor

Create interactive onboarding guidance and help your customers be self-organised inside your product

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Eyelet editor",
  "description": "Create interactive onboarding guidance and help your customers be self-organised inside your product",
  "version": "2.6",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Eyelet product tours",
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/embed_images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://staging.eyelet.io/*",
      "*://app.eyelet.io/*"
    ]
  }
}