ChatWork Quick Input

ChatWorkのテキスト入力をサポートする拡張機能

What is ChatWork Quick Input?

ChatWork Quick Input is a Chrome extension developed by SHNakajima, and its main feature is "ChatWorkのテキスト入力をサポートする拡張機能".

Extension Screenshots

screenshot
screenshot
screenshot

Download ChatWork Quick Input Extension CRX File

Download ChatWork Quick Input extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        オプション(*1)から定型文を設定し、入力を簡単に行うことができるようになるツールです。

デフォルトでは[code]タグと[info]タグを挿入できますが、オリジナルの定型文を設定できます!

【 設定項目 】
・入力するテキスト:
  アイコンクリック時 / キーボードショートカット実行時に入力されるテキスト
・説明:
  アイコンホバー時に表示されるテキスト
・アイコン部分のHTML:
  アイコン一覧に表示されるHTML
  ※ タグとかにするといい感じです。
・キーボードショートカットの有効化:
  ONにするとキーバインドが有効化され、設定したキー押下時に定型文が入力されます!
・キーバインド:
  キーボードショートカットのトリガーとなるキー設定

(*1)ChatWork Quick Inputのオプション。拡張機能のアイコン右クリック→オプションで設定画面が開きます。

【バージョン情報 】
0.3
2021/3/10 現在の最新版chatworkに対応

0.2
fontawasomeに対応(https://fontawesome.com/):fontawasomeのiタグをアイコンとして指定可能に

0.1
初期リリース                    

Extension Basic Information

Name ChatWork Quick Input ChatWork Quick Input
ID ijgidfcngbfcicilenkdngepclpkabom
Official URL https://chromewebstore.google.com/detail/chatwork-quick-input/ijgidfcngbfcicilenkdngepclpkabom
Description ChatWorkのテキスト入力をサポートする拡張機能
File Size 547 KB
Installation Count 67
Current Version 0.3
Last Updated 2021-03-10
Publish Date 2020-12-14
Developer SHNakajima
Email [email protected]
Payment Type free
Help Page URL https://github.com/SHNakajima/CW_QuickInput
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatWork Quick Input",
    "version": "0.3",
    "manifest_version": 2,
    "description": "ChatWork\u306e\u30c6\u30ad\u30b9\u30c8\u5165\u529b\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u62e1\u5f35\u6a5f\u80fd",
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chatwork.com\/*",
                "*:\/\/chatwork.com\/*",
                "*:\/\/kcw.kddi.ne.jp\/*"
            ],
            "js": [
                "scripts\/jquery-3.5.1.min.js",
                "scripts\/core.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_page": "pages\/public\/index.html"
}