Clarity AI

Clarity AI

Quickly and easily set up auto-replies to messages you receive, saving you time and effort in responding to messages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Quickly and easily set up auto-replies to messages you receive, saving you time and effort in responding to messages.",
  "version": "1.0.2",
  "manifest_version": 3,
  "name": "Clarity AI",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "background",
    "activeTab",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logo.png"
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "devtools_page": "devtools.html"
}