HyperWrite - AI Assistant

HyperWrite - AI Assistant

Personal Assistant by HyperWrite is the first AI agent that can operate your browser. It's like self-driving mode for the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Personal Assistant by HyperWrite is the first AI agent that can operate your browser. It's like self-driving mode for the web.",
  "version": "3.1.36",
  "manifest_version": 3,
  "name": "HyperWrite - AI Assistant",
  "author": "HyperWrite",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/d/*"
      ],
      "js": [
        "googleDocsUtil.bundle.js",
        "googleDocsInject.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "googleDocsCanvasInjector.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "https://app.hyperwriteai.com/*",
        "https://hyperwriteai.com/*",
        "http://localhost:3000/*",
        "http://localhost:3001/*"
      ],
      "all_frames": false,
      "js": [
        "extensionInstalled.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://auth.hyperwriteai.com/*",
        "https://accounts.google.com/*"
      ],
      "js": [
        "app.bundle.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "eventTrap.bundle.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "externally_connectable": {
    "matches": [
      "https://app.hyperwriteai.com/*",
      "https://hyperwriteai.com/*",
      "http://localhost:3000/*",
      "http://localhost:3001/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "content/inject.js",
        "hyperlogo-public.png",
        "*.png",
        "*.svg",
        "*.gif",
        "*.woff",
        "*.tff",
        "content/gDocsAnnotatedCanvas.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}