{
  "manifest_version": 3,
  "name": "Gadget Agent",
  "version": "1.0",
  "description": "Autonomous web scanner & desktop file accessor",
  "permissions": ["storage", "tabs", "scripting", "alarms", "nativeMessaging", "fileSystemProvider"],
  "host_permissions": ["<all_urls>"],"options_ui": {"page": "options.html","open_in_tab": true},
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [{
    "matches": ["<all_urls>"],
    "js": ["content.js"]
  }],
  "nativeMessagingHosts": ["com.gadget.agent"]
}