Chatwork+

Chatwork+

ChatWork(チャットワーク)拡張機能です。メッセージ欄にて@を押したらTO選択リストが開く、```で[code]タグを入力補完など。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Fumiya Ito",
  "homepage_url": "http://example.com",
  "name": "Chatwork+",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "ChatWork(チャットワーク)拡張機能です。メッセージ欄にて@を押したらTO選択リストが開く、```で[code]タグを入力補完など。",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "https://www.chatwork.com/*",
        "https://chatwork.com/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": []
  },
  "permissions": []
}