{ "manifest_version": 3, "name": "Simple Sync", "description": "A simple extension", "version": "1.0.0", "icons": { "16": "icons/icon.jpg", "48": "icons/icon.jpg", "128": "icons/icon.jpg" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons/icon.jpg", "48": "icons/icon.jpg" } }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting", "activeTab", "bookmarks" ], "host_permissions": [ "" ], "content_scripts": [ { "matches": [ "" ], "js": [ "content.js" ] } ] }