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列表
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"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>"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user