brain / Extension /src /manifest.json
zhiwen0905's picture
feature(#191): update UI in extension...
233e279
{
"manifest_version": 3,
"name": "Chatbot Chrome Extension",
"description": "A chrome extension to implement the chatbot using OpenAI by RisingLand.",
"options_page": "options.html",
"permissions": ["activeTab", "tabs", "windows", "contextMenus", "storage"],
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"devtools_page": "devtools.html",
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-128.png",
"icon-34.png",
"logo_panel.png",
"logo.png"
],
"matches": ["<all_urls>"]
}
]
}