mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-07-03 06:51:44 +08:00
42 lines
752 B
JSON
42 lines
752 B
JSON
{
|
|
"name": "ChatGPTBox",
|
|
"description": "Integrating ChatGPT into your browser deeply, everything you need is here",
|
|
"version": "2.0.3",
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"16": "logo.png",
|
|
"32": "logo.png",
|
|
"48": "logo.png",
|
|
"128": "logo.png"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"contextMenus",
|
|
"https://*.openai.com/"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"browser_action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://*/*"
|
|
],
|
|
"js": [
|
|
"shared.js",
|
|
"content-script.js"
|
|
],
|
|
"css": [
|
|
"content-script.css"
|
|
]
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
"*.png"
|
|
]
|
|
} |