Rakuten Drive (Transfer&Cloud)

Rakuten Drive (Transfer&Cloud)

Share large files up to 10GBs! More easy and efficient!

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_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_desc__",
  "version": "23.04.01",
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "storage",
    "background"
  ],
  "background": {
    "service_worker": "/src/service_worker.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "/images/icon-16.png",
      "24": "/images/icon-24.png",
      "32": "/images/icon-32.png",
      "64": "/images/icon-64.png",
      "96": "/images/icon-96.png",
      "128": "/images/icon-128.png",
      "192": "/images/icon-192.png"
    }
  },
  "host_permissions": [
    "https://mail.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.slack.com/*",
        "*://mail.google.com/*",
        "*://inbox.google.com/*",
        "*://*.chatwork.com/*"
      ],
      "js": [
        "/lib/jquery-3.4.1.min.js",
        "/lib/inboxsdk.js",
        "/src/consts.js",
        "/src/utils.js",
        "/src/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/rakuten-drive.svg",
        "/images/sendy_gray.svg",
        "/images/logo_title.png"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "/lib/jquery-3.4.1.min.js",
        "/html/embedded_webapp.html"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "*.map"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "/images/icon-16.png",
    "24": "/images/icon-24.png",
    "32": "/images/icon-32.png",
    "64": "/images/icon-64.png",
    "96": "/images/icon-96.png",
    "128": "/images/icon-128.png",
    "192": "/images/icon-192.png"
  }
}