Leminda AI Extension

Leminda AI Extension

The ultimate tool designed to summarize and answer questions on web content. Checkout the Leminda.com web-app for more options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Leminda AI Extension",
  "author": "Leminda AI front-end team",
  "description": "The ultimate tool designed to summarize and answer questions on web content. Checkout the Leminda.com web-app for more options.",
  "version": "2.0.9",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://leminda.com/*",
      "https://testing.leminda.com/*",
      "https://localhost:3000/*"
    ]
  },
  "action": {
    "default_title": "Leminda AI - summarize and chat about page content",
    "default_icon": {
      "16": "/images/icon16.png",
      "24": "/images/icon24.png",
      "32": "/images/icon32.png",
      "48": "/images/icon48.png",
      "128": "/images/icon128.png"
    }
  },
  "host_permissions": [
    "<all_urls>",
    "file:///*.pdf"
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting",
    "downloads"
  ],
  "icons": {
    "16": "/images/icon16.png",
    "24": "/images/icon24.png",
    "32": "/images/icon32.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "file:///*.pdf"
      ],
      "exclude_matches": [
        "https://leminda.com/*",
        "https://testing.leminda.com/*",
        "https://localhost:3000/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_idle"
    }
  ]
}