File size: 1,042 Bytes
8ab7dfe 04e85f3 22b1ae6 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 8ab7dfe 04e85f3 233e279 8ab7dfe 233e279 8ab7dfe 04e85f3 8ab7dfe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | {
"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>"]
}
]
} |