FUJIFILM Synapse 5 Extension Beta

FUJIFILM Synapse 5 Extension Beta

Moves the viewer to position specified in localStorage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FUJIFILM Synapse 5 Extension Beta",
  "description": "Moves the viewer to position specified in localStorage",
  "version": "1.0.45",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*iewer*",
        "*://*/*PowerJacket*",
        "*://*/*WorkflowUI*",
        "*://*/WebHelp5/*",
        "*://*/SSOMgr/*",
        "*://*/*ThinkLogChatUI*",
        "*://*/*AnalysisPanel*",
        "*://*/*DicomTransfer*",
        "*://*/*SynapseSignOn*",
        "*://*/Synapse/WebQuery*",
        "*://*/*Client.Web*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://ajax.googleapis.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "canary.png",
        "canary.1.0.12.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "icon_48.png",
    "128": "icon.png"
  }
}