Highlight AI companion

Highlight AI companion

This extension allows the user to send the current webpage information to the Highlight AI application for further processing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Highlight AI companion",
  "version": "1.0.2",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/contentScript.js"
      ]
    }
  ],
  "description": "This extension allows the user to send the current webpage information to the Highlight AI application for further processing.",
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*"
    ]
  }
}