Logseq Copilot

Logseq Copilot

Logseq Copilot, Connect with you logseq API server, bring your information when you browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.14.2",
  "author": "[email protected]",
  "name": "Logseq Copilot",
  "description": "Logseq Copilot, Connect with you logseq API server, bring your information when you browsing.",
  "chrome_url_overrides": {},
  "icons": {
    "192": "assets/img/logo-192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Logseq Copilot"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": false,
    "open_in_tab": true
  },
  "commands": {
    "clip": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Make Clip note"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content-script.css",
        "assets/img/logo.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}