Safer Send Button

Safer Send Button

Make gmail send button safer and reduce accidental sends and data leakage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "css": [
        "main.css"
      ],
      "js": [
        "main.js",
        "lib/jquery-3.6.1.min.js",
        "lib/gmail.js",
        "content.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "description": "Make gmail send button safer and reduce accidental sends and data leakage.",
  "homepage_url": "https://github.com/AvnerCohen/safer-send-gmail",
  "icons": {
    "16": "logo.png",
    "128": "logo.png"
  },
  "manifest_version": 3,
  "name": "Safer Send Button",
  "permissions": [
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.0.3",
  "web_accessible_resources": [
    {
      "resources": [
        "lib/gmail.js",
        "lib/jquery-3.6.1.min.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}