Files
FastGPT/projects/app/public/chrome_extension/fastgpt_agent/manifest.json
shilin f35ba8e5a7 feat(chatbot-extension): a Chrome extension that can be using for chat with AI on any website (#2235)
* feat(chatbot-extension): a Chrome extension that can be using for chat with AI on any website

* fix: 插件支持语音输入
feat:chatbot支持切换

* fix: 切换chatbot后,自动隐藏bot列表
2024-08-06 10:53:01 +08:00

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>"]
}
]
}