TransferNow for Chrome and Gmail

TransferNow for Chrome and Gmail

Fast, secure transfer of large files. Generate download links for large files directly from Chrome and Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "TransferNow",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.6",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png",
    "512": "assets/icon-512.png"
  },
  "action": {
    "default_title": "__MSG_default_title__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://transfernow-sso-staging.web.app/index.html?provider=*",
        "https://transfernow-sso.web.app/index.html?provider=*"
      ],
      "js": [
        "commands.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "sidePanel",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "https://mail.google.com/"
  ],
  "side_panel": {
    "default_path": "index.html"
  },
  "background": {
    "service_worker": "service-worker.js"
  }
}