Untitled
{ "manifest_version": 3, "name": "Overlay UI Example", "version": "1.0", "description": "Displays an overlay UI on web pages.", "permissions": ["activeTab", "scripting"], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["content.js"], "css": ["overlay.css"] } ] }
Leave a Comment