doDOC - User Experience

doDOC - User Experience

This extension enables a better user experience while using doDOC.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "0.10",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "author": "doDOC Corp.",
  "icons": {
    "16": "icons/logo-16x16.png",
    "32": "icons/logo-32x32.png",
    "48": "icons/logo-48x48.png",
    "64": "icons/logo-64x64.png",
    "128": "icons/logo-128x128.png"
  },
  "permissions": [
    "clipboardRead",
    "fontSettings"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.dodoc.com/*",
        "*://dodoc.local/*",
        "*://localhost/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.dodoc.com/*",
      "http://localhost/*",
      "http://localhost:8081/*"
    ],
    "accepts_tls_channel_id": false
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}