Chatwork Timecard Plugin

チャットワークで業務開始・業務終了のメッセージをワンクリックで送信できます。

What is Chatwork Timecard Plugin?

Chatwork Timecard Plugin is a Chrome extension developed by かんだつ, and its main feature is "チャットワークで業務開始・業務終了のメッセージをワンクリックで送信できます。".

Extension Screenshots

screenshot
screenshot

Download Chatwork Timecard Plugin Extension CRX File

Download Chatwork Timecard Plugin 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

                        テレワーク等で毎日定型文を入力するのにうんざりしている方におすすめです。

メッセージ内容の入力欄上部にボタンが追加されます。
業務開始ボタンをクリックすると「おはようございます。業務開始します。」、
業務終了ボタンをクリックすると「業務終了します。お疲れさまでした。」と自動送信されます。

ボタンクリック時にメッセージ内容が入力途中だと削除されますのでご注意ください。

chrome右上に表示される拡張機能アイコンをクリックすると、ボタンを表示するチャットを管理できます。
未登録の場合はすべてのチャットでボタンが表示されますが、一つでも登録された場合は登録されたURLのチャットのみでボタンを表示するようになります。

-------------------------------------
Update info
・2021-11-12 チャットワークのアップデートにより自動送信が行われなくなっていた不具合を修正
・2021-06-02 チャットワークのアップデートによりボタンが表示されなくなっていた不具合を修正
・2021-04-01 チャットワークのアップデートにより自動送信が行われなくなっていた不具合を修正                    

Extension Basic Information

Name Chatwork Timecard Plugin Chatwork Timecard Plugin
ID ckoifmdeompppgeellbokfgekhojcheh
Official URL https://chromewebstore.google.com/detail/chatwork-timecard-plugin/ckoifmdeompppgeellbokfgekhojcheh
Description チャットワークで業務開始・業務終了のメッセージをワンクリックで送信できます。
File Size 3.71 MB
Installation Count 34
Current Version 0.0.8
Last Updated 2021-11-14
Publish Date 2020-04-14
Rating 5.00/5 Total 1 Ratings
Developer かんだつ
Email [email protected]
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatwork Timecard Plugin",
    "description": "\u30c1\u30e3\u30c3\u30c8\u30ef\u30fc\u30af\u3067\u696d\u52d9\u958b\u59cb\u30fb\u696d\u52d9\u7d42\u4e86\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u9001\u4fe1\u3067\u304d\u307e\u3059\u3002",
    "version": "0.0.8",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Chatwork Timecard Plugin",
        "default_popup": "vue\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chatwork.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "js\/content_script.js"
            ],
            "css": [
                "css\/main.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "lib\/jquery.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "https:\/\/www.chatwork.com\/*",
        "storage"
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    }
}