Safety for Gmail™

Gmail™ に誤送信防止機能を追加します。
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Safety for Gmail™",
  "short_name": "Safety for Gmail™",
  "description": "Gmail™ に誤送信防止機能を追加します。",
  "version": "1.1.1",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://mail.google.com/*",
        "https://mail.google.com/*"
      ],
      "css": [
        "css/common.css"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "images/space.png",
        "images/trans.png",
        "images/alert_24.gif",
        "images/clip_24.png",
        "images/download_004.png",
        "css/autocomplete-hide.css",
        "css/link-invalid.css",
        "js/jquery-1.9.1.min.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_96w16.png"
  }
}