Examine source code of Osprey: Browser Protection

Inspect and view changes in Osprey: Browser Protection 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
{
  "short_name": "Osprey",
  "name": "Osprey: Browser Protection",
  "manifest_version": 3,
  "version": "1.1.3",
  "description": "Protect against online threats in real-time using multiple browser protection engines.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "24": "assets/icons/icon24.png",
      "32": "assets/icons/icon32.png"
    },
    "default_popup": "pages/popup/PopupPage.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "notifications",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}