chatwork-notification

chatwork-notification

チャットワークの未読チャットをデスクトップ通知する拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0.3",
  "name": "chatwork-notification",
  "description": "チャットワークの未読チャットをデスクトップ通知する拡張機能です。",
  "content_scripts": [
    {
      "js": [
        "chatwork-notification.js"
      ],
      "matches": [
        "https://www.chatwork.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}