BigFile Transfer(Free)- Sateraito Office

BigFile Transfer(Free)- Sateraito Office

Extension of Sateraito Office Bigfile Transfer. Add a button to open Bigfile Transfer from Google Web Mail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.4.7",
  "default_locale": "ja",
  "homepage_url": "http://www.sateraito.jp/",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "satelite16.png",
    "32": "satelite32.png",
    "48": "satelite48.png",
    "128": "satelite128.png"
  },
  "background": {
    "service_worker": "attach_file_bs.js",
    "type": "module"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "attach_file_cs.js",
        "jquery-1.10.2.min.js",
        "extenstion_user_upload.js",
        "seteselectors.js"
      ],
      "matches": [
        "*://sateraito-apps-bigfile2.appspot.com/",
        "*://mail.google.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "identity",
    "identity.email"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "attach_file.png",
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}