Locus — Smart CTRL + F

Locus — Smart CTRL + F

AI-powered CTRL + F for easy document search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Locus — Smart CTRL + F",
  "version": "2.0.0",
  "description": "AI-powered CTRL + F for easy document search",
  "options_page": "ext/options/index.html",
  "background": {
    "service_worker": "ext/background/index.js"
  },
  "action": {
    "default_popup": "ext/popup/index.html",
    "default_title": "Click to open panel"
  },
  "side_panel": {
    "default_path": "ext/sidepanel/index.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      }
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "sidePanel",
    "tts",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://lp-page-1f2f47.webflow.io/*",
      "https://www.locusextension.com/*"
    ]
  },
  "chrome_url_overrides": {},
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*.html"
      ],
      "js": [
        "ext/content/index.js"
      ],
      "css": [
        "styles/content.styles.css",
        "vendor/font-awesome/css/all.min.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "devtools_page": "ext/dev-tools/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/**/*",
        "styles/**/*",
        "scripts/**/*",
        "vendor/**/*",
        "**/vendor/*.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArML0hnp/RFvAQxCYs6ccZ73yyC8+IAvfS3bAaQrdH47zNfRxBYATgT6S5o8g25qYNYDsXvW2YDyCwfJClo78Ubbm+bVL2sdSbgwHGXtM4b48bE4cUYski3ph4kISuKo0LLWjQdBJ+USCvMW8HRAnmuqsyauk/YPF3jHLLtS2z7tuWaJ8PL0CpYqrH0PxK23FS3GkGeoa9y1jTYleDrIY5gitAyZaxd7pn+GH+ZhJYJPoNKLydf1OYcivmh6ztLyouTsZgKd1jTr9cvKnNdM8MiFoXy3sgttlZJ+2tKTIpOLlFVlsqbODRwPMs7WOx9Jgj+xPKPvADhUCK5Ed/3qUdwIDAQAB"
}