Oracle Smart View for Office

Oracle Smart View for Office

Show Oracle Smart View content. Supports Smart View 23.210 or later

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "23.11.1",
  "manifest_version": 3,
  "name": "Oracle Smart View for Office",
  "description": "Show Oracle Smart View content. Supports Smart View 23.210 or later",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "redir.html"
      ],
      "matches": [],
      "extension_ids": []
    }
  ],
  "permissions": [
    "declarativeNetRequestWithHostAccess",
    "nativeMessaging",
    "cookies"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "48": "oracleMiddleware48.png",
    "96": "oracleMiddleware96.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}