HARPA AI | Automation Agent with Claude & GPT

HARPA AI | Automation Agent with Claude & GPT

AI Agent for Chrome. ChatGPT Plus / GPT-4 copilot on any website. Automate, search, summarize, translate, write on websites with AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "version": "8.6.4",
  "default_locale": "en",
  "icons": {
    "128": "img/icons/icon-128.png",
    "500": "img/icons/icon-500.png"
  },
  "background": {
    "service_worker": "/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://harpa.ai/oi",
        "http://localhost:3000/oi"
      ],
      "js": [
        "/cs.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "/cs-openai.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://harpa.ai/*"
      ],
      "exclude_matches": [
        "https://harpa.ai/oi"
      ],
      "js": [
        "/cs-web.js"
      ],
      "css": [
        "/css/harpa.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://harpaai.test.onfastspring.com/*",
        "https://harpaai.onfastspring.com/*"
      ],
      "css": [
        "/css/fastspring.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "alarms",
    "background",
    "browsingData",
    "cookies",
    "declarativeNetRequest",
    "notifications",
    "tabs",
    "storage",
    "offscreen",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "action": {
    "default_icon": {
      "48": "img/badges/badge-48-day.png"
    },
    "default_title": "HARPA AI | Browser's Mind"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "oi.js",
        "nj-engine.js",
        "nj-youtube.js",
        "nj-desktop.js",
        "js/timer-worker.js",
        "js/pdf.min.js",
        "js/pdf.worker.min.js",
        "img/misc/shortcut.svg",
        "img/commands/*.svg",
        "harpa.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}