{ "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": [ "" ], "js": [ "content.js" ] } ], "host_permissions": [ "" ], "web_accessible_resources": [ { "resources": [ "extension/dist/*" ], "matches": [ "" ] } ], "permissions": [ "storage" ] }