AI_Assistant/manifest.json

49 lines
1017 B
JSON
Raw Permalink Normal View History

2023-01-08 03:00:40 +00:00
{
"manifest_version": 3,
"name": "AI Browser Assistant",
"description": "OpenAI powered Assistant",
"version": "0.0.1",
"permissions": [
"storage",
"contextMenus",
"activeTab"
],
"host_permissions": [
"https://api.openai.com/*",
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"fix.css"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"fix.css"
]
}
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "favicon-16x16.png",
"32": "favicon-32x32.png"
}
}