1. {
    
  2.   "manifest_version": 3,
    
  3.   "name": "React Developer Tools",
    
  4.   "description": "Adds React debugging tools to the Microsoft Edge Developer Tools.",
    
  5.   "version": "4.28.5",
    
  6.   "version_name": "4.28.5",
    
  7.   "minimum_chrome_version": "102",
    
  8.   "icons": {
    
  9.     "16": "icons/16-production.png",
    
  10.     "32": "icons/32-production.png",
    
  11.     "48": "icons/48-production.png",
    
  12.     "128": "icons/128-production.png"
    
  13.   },
    
  14.   "action": {
    
  15.     "default_icon": {
    
  16.       "16": "icons/16-disabled.png",
    
  17.       "32": "icons/32-disabled.png",
    
  18.       "48": "icons/48-disabled.png",
    
  19.       "128": "icons/128-disabled.png"
    
  20.     },
    
  21.     "default_popup": "popups/disabled.html"
    
  22.   },
    
  23.   "devtools_page": "main.html",
    
  24.   "content_security_policy": {
    
  25.     "extension_pages": "script-src 'self'; object-src 'self'"
    
  26.   },
    
  27.   "web_accessible_resources": [
    
  28.     {
    
  29.       "resources": [
    
  30.         "main.html",
    
  31.         "panel.html",
    
  32.         "build/*.js"
    
  33.       ],
    
  34.       "matches": [
    
  35.         "<all_urls>"
    
  36.       ],
    
  37.       "extension_ids": []
    
  38.     }
    
  39.   ],
    
  40.   "background": {
    
  41.     "service_worker": "build/background.js"
    
  42.   },
    
  43.   "permissions": [
    
  44.     "storage",
    
  45.     "scripting"
    
  46.   ],
    
  47.   "host_permissions": [
    
  48.     "<all_urls>"
    
  49.   ],
    
  50.   "content_scripts": [
    
  51.     {
    
  52.       "matches": [
    
  53.         "<all_urls>"
    
  54.       ],
    
  55.       "js": [
    
  56.         "build/prepareInjection.js"
    
  57.       ],
    
  58.       "run_at": "document_start"
    
  59.     }
    
  60.   ]
    
  61. }