1. {
    
  2.   "manifest_version": 2,
    
  3.   "name": "React Developer Tools",
    
  4.   "description": "Adds React debugging tools to the Firefox Developer Tools.",
    
  5.   "version": "4.28.5",
    
  6.   "applications": {
    
  7.     "gecko": {
    
  8.       "id": "@react-devtools",
    
  9.       "strict_min_version": "102.0"
    
  10.     }
    
  11.   },
    
  12.   "icons": {
    
  13.     "16": "icons/16-production.png",
    
  14.     "32": "icons/32-production.png",
    
  15.     "48": "icons/48-production.png",
    
  16.     "128": "icons/128-production.png"
    
  17.   },
    
  18.   "browser_action": {
    
  19.     "default_icon": {
    
  20.       "16": "icons/16-disabled.png",
    
  21.       "32": "icons/32-disabled.png",
    
  22.       "48": "icons/48-disabled.png",
    
  23.       "128": "icons/128-disabled.png"
    
  24.     },
    
  25.     "default_popup": "popups/disabled.html",
    
  26.     "browser_style": true
    
  27.   },
    
  28.   "devtools_page": "main.html",
    
  29.   "content_security_policy": "script-src 'self' 'unsafe-eval' blob:; object-src 'self'",
    
  30.   "web_accessible_resources": [
    
  31.     "main.html",
    
  32.     "panel.html",
    
  33.     "build/*.js"
    
  34.   ],
    
  35.   "background": {
    
  36.     "scripts": [
    
  37.       "build/background.js"
    
  38.     ]
    
  39.   },
    
  40.   "permissions": [
    
  41.     "file:///*",
    
  42.     "http://*/*",
    
  43.     "https://*/*",
    
  44.     "clipboardWrite",
    
  45.     "scripting",
    
  46.     "devtools"
    
  47.   ],
    
  48.   "content_scripts": [
    
  49.     {
    
  50.       "matches": [
    
  51.         "<all_urls>"
    
  52.       ],
    
  53.       "js": [
    
  54.         "build/prepareInjection.js"
    
  55.       ],
    
  56.       "run_at": "document_start"
    
  57.     }
    
  58.   ]
    
  59. }