DocsGPT/extensions/chrome/manifest.json
Jared Bradley ff4f447f24
Update manifest.json
Change name from "Documentation AI butler" to "DocsGPT - Documentation AI butler"; Fixed spelling
2023-02-04 19:49:08 -08:00

22 lines
546 B
JSON

{
"name": "DocsGPT - Documentation AI butler",
"version": "0.0.1",
"manifest_version": 2,
"description": "AI assistant for developers, that helps you answer your questions about the documentation you are reading.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"permissions": ["activeTab", "storage"],
"browser_action": {
"default_popup": "popup.html"
}
}