KKBot

KKBot

kkbot是一款基于人工智能大模型的问答应用,可以快速为用户或企业提供私有知识库以及互联网公开数据的对话式检索

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "KKBot",
  "version": "1.1.7",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./robot.png",
      "32": "./robot.png",
      "48": "./robot.png",
      "128": "./robot.png"
    },
    "default_title": "KKBot"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/logo-full.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/main2.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/main.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "iconfont.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "iconfont.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "extendSetData.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "./robot.png",
    "32": "./robot.png",
    "48": "./robot.png",
    "128": "./robot.png"
  }
}