kintone Mention Show

kintone Mention Show

kintoneにてメンション一覧のところに自分宛の通知にマークを付けてくれるクローム拡張

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "kintone Mention Show",
  "short_name": "kintone通知自分宛検知",
  "description": "kintoneにてメンション一覧のところに自分宛の通知にマークを付けてくれるクローム拡張",
  "manifest_version": 2,
  "version": "0.0.5",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*.cybozu.com/*",
        "https://*.cybozu-dev.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentScript.css"
      ],
      "run_at": "document_end"
    }
  ]
}