智能小e

智能小e插件 为您提供基于大模型的7*24小时智能办公助手
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "智能小e",
  "version": "1.11.8",
  "manifest_version": 3,
  "description": "智能小e插件 为您提供基于大模型的7*24小时智能办公助手",
  "minimum_chrome_version": "88",
  "icons": {
    "64": "icons/icon.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "debugger",
    "webNavigation",
    "clipboardRead",
    "clipboardWrite",
    "scripting",
    "downloads",
    "sidePanel"
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "http://10.10.27.210/main/app-chat/*",
        "https://cloud.qianliling.com/main/app-chat/*",
        "https://rpauat-test.easst.cn/main/app-chat/*"
      ],
      "exclude_globs": [
        "chrome://*"
      ],
      "match_about_blank": true,
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/content.css",
        "static/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "智能小e",
    "default_icon": "icons/icon.png"
  }
}