Cove Drop

Cove Drop

Drop anything seamlessly and securely from your Cove Identity phone App to a desktop, be it one-time passwords, your important…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cove Drop",
  "version": "1.1.0",
  "permissions": [
    "activeTab",
    "storage",
    "https://drop.coveidentity.io/",
    "https://bv01.coveidentity.com/",
    "alarms"
  ],
  "background": {
    "page": "index.html#/background"
  },
  "browser_action": {
    "default_title": "Drop stuff seamlessly and securely from your Cove Identity App to a browser",
    "default_popup": "index.html#/popup"
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "assets/content.css"
      ]
    }
  ],
  "icons": {
    "16": "assets/logo-light-blue.png",
    "48": "assets/logo-light-blue.png",
    "128": "assets/logo-light-blue.png"
  },
  "content_security_policy": "script-src 'sha256-TyknwWIDDvMVUd04KldrmJOFj4SG6TJcei5tw/n9lkk=' 'self' https://www.google-analytics.com https://www.googletagmanager.com https://google-analytics.com; object-src 'self'"
}