mirror of
https://github.com/open-webui/extension
synced 2025-06-26 18:25:58 +00:00
41 lines
690 B
JSON
41 lines
690 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Open WebUI Extension",
|
|
"description": "Open WebUI",
|
|
"version": "1.0",
|
|
"icons": {
|
|
"16": "images/icon-16.png",
|
|
"32": "images/icon-32.png",
|
|
"48": "images/icon-48.png",
|
|
"128": "images/icon-128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"content.js"
|
|
]
|
|
}
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"extension/dist/*"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
],
|
|
"permissions": [
|
|
"storage"
|
|
]
|
|
} |