ONLYOFFICE

ONLYOFFICE

The most advanced processor for your documents

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "11.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "short_name": "ONLYOFFICE",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon_16.png",
      "24": "icon_24.png",
      "32": "icon_32.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "__MSG_appName__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/favicon.ico",
        "https://*/favicon.ico"
      ],
      "all_frames": true,
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://personal.onlyoffice.com/",
    "http://*/",
    "https://*/"
  ]
}