2023-02-03 13:07:54 +00:00
|
|
|
{
|
2023-02-05 03:49:08 +00:00
|
|
|
"name": "DocsGPT - Documentation AI butler",
|
2023-02-03 13:07:54 +00:00
|
|
|
"version": "0.0.1",
|
2023-03-16 05:24:55 +00:00
|
|
|
"manifest_version": 3,
|
2023-02-03 13:07:54 +00:00
|
|
|
"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": {
|
2023-03-16 05:24:55 +00:00
|
|
|
"service_worker": "src/bg/service-worker.js"
|
2023-02-03 13:07:54 +00:00
|
|
|
},
|
2023-03-16 05:24:55 +00:00
|
|
|
"action": {
|
|
|
|
"default_title": "DocsGPT - Documentation AI butler",
|
2023-02-03 13:07:54 +00:00
|
|
|
"default_popup": "popup.html"
|
2023-03-16 05:24:55 +00:00
|
|
|
},
|
|
|
|
"permissions": ["activeTab", "storage"],
|
|
|
|
"host_permissions": [
|
|
|
|
"*://*/*"
|
|
|
|
],
|
|
|
|
"content_scripts": [{
|
|
|
|
"js": ["popup.js"],
|
|
|
|
"matches": ["https://github.com/*"]
|
|
|
|
}]
|
2023-02-03 13:07:54 +00:00
|
|
|
|
2023-02-05 03:49:08 +00:00
|
|
|
}
|