Re-send Email 2 Sateraito Office

Re-send Email 2 Sateraito Office

Add a Re-send function to your email.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.4",
  "default_locale": "en",
  "homepage_url": "http://www.sateraito.jp/",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "icons": {
    "48": "satelite48.png",
    "128": "satelite128.png"
  },
  "permissions": [
    "clipboardRead"
  ],
  "content_scripts": [
    {
      "js": [
        "resend_btn.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ]
}