mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-26 07:06:33 +00:00

* feat(chatbot-extension): a Chrome extension that can be using for chat with AI on any website * fix: 插件支持语音输入 feat:chatbot支持切换 * fix: 切换chatbot后,自动隐藏bot列表
42 lines
789 B
JSON
42 lines
789 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "ChatBot Extension",
|
|
"version": "1.1",
|
|
"description": "A ChatBot",
|
|
"permissions": [
|
|
"storage",
|
|
"notifications",
|
|
"tabs",
|
|
"activeTab",
|
|
"scripting",
|
|
"webRequest"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "src/background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "src/popup.html",
|
|
"default_icon": {
|
|
"16": "img/favicon32.png",
|
|
"48": "img/favicon32.png",
|
|
"128": "img/favicon32.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "img/favicon32.png",
|
|
"32": "img/favicon32.png",
|
|
"48": "img/favicon32.png",
|
|
"128": "img/favicon32.png"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"js": [
|
|
"src/content.js"
|
|
],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
]
|
|
} |