Examine source code of Blackout: Browser Privacy Screen

Inspect and view changes in Blackout: Browser Privacy Screen source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Blackout: Browser Privacy Screen",
  "version": "1.1",
  "description": "Gives you screen privacy no matter where you are.",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "32": "images/blackout-browser32.png",
      "64": "images/blackout-browser64.png",
      "96": "images/blackout-browser96.png",
      "128": "images/blackout-browser128.png",
      "256": "images/blackout-browser256.png"
    },
    "default_title": "Toggle Blackout"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "options.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src 'self' ws://localhost:* wss://localhost:*;"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "addon@tryblackout.app"
    }
  }
}