ChatWork Image Display

ChatWork Image Display

ChatWork上に貼られた画像URLのサムネイルを表示します - Add image on ChatWork from image URL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ChatWork Image Display",
  "version": "0.8",
  "description": "ChatWork上に貼られた画像URLのサムネイルを表示します - Add image on ChatWork from image URL",
  "content_scripts": [
    {
      "matches": [
        "https://www.chatwork.com/*",
        "https://kcw.kddi.ne.jp/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "loader.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "addImage.js"
  ]
}