Examine source code of Synapse Pathology Workflow Extension

Inspect and view changes in Synapse Pathology Workflow Extension 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Synapse Pathology Workflow Extension",
  "version": "2.0.0",
  "description": "Closes orphaned tabs opened to launch to a Synapse Pathology scan and manages dual monitor support",
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "Synapse Pathology Workflow Extension - click for dual screen options",
    "default_popup": "prefs.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "system.display",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "manifest_version": 3
}