Synology Office Extension

Synology Office Extension

Supports using the color picker to select specific colors on the screen and clipboard operations such as copying and pasting texts.

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_ext_name__",
  "version": "3.0.0",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "icons": {
    "16": "images/Office_16.png",
    "48": "images/Office_48.png",
    "128": "images/Office_128.png"
  },
  "background": {
    "service_worker": "js/eventPage.js",
    "type": "module"
  },
  "permissions": [
    "clipboardRead",
    "scripting",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/loader.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/Office_16.png",
      "48": "images/Office_48.png",
      "128": "images/Office_128.png"
    }
  },
  "options_ui": {
    "page": "/html/options.html"
  },
  "options_page": "/html/options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "/js/synofficeExt.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}