rakumoエクステンション for Gmail™

rakumoエクステンション for Gmail™

rakumoエクステンションfor Gmail™は、Gmail™の宛先にrakumoコンタクトのアドレスを追加するエクステンションです。…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "rakumoエクステンション for Gmail™",
  "version": "2.8.27",
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://a-rakumo.appspot.com/"
  ],
  "action": {
    "default_title": "rakumoエクステンション for Gmail™",
    "default_icon": "img/crx/icon.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "exclude_matches": [
        "*://mail.google.com/*view=om*",
        "*://mail.google.com/*view=pt*",
        "*://mail.google.com/*view=lg*",
        "*://mail.google.com/mail/md*"
      ],
      "js": [
        "content_scripts/content_script.js"
      ]
    }
  ],
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  }
}