Dokkio Sidebar

Dokkio Sidebar

Integrate your digital life - web pages & apps, content, files, and messages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "3.7.5",
  "name": "Dokkio Sidebar",
  "description": "Integrate your digital life - web pages & apps, content, files, and messages.",
  "permissions": [
    "storage",
    "pageCapture",
    "<all_urls>",
    "https://api.dokkio.com/*"
  ],
  "icons": {
    "16": "dokkio_cloud_16x16.png",
    "48": "dokkio_cloud_48x48.png",
    "96": "dokkio_cloud_96x96.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "sidebar_browser_logo_off.png"
    },
    "default_title": "Dokkio Extension",
    "default_popup": "popup.html"
  },
  "omnibox": {
    "keyword": "dokkio"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.dokkio.com/*"
      ],
      "js": [
        "accessTokenFromDokkioPage.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.dokkio.com/*",
        "https://*.dokkio-dev.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "panel.js"
  ]
}