Chatwork Mention to Team

Chatworkでグループチャットに設定されているチームにメンションできるようにする拡張機能

Qu'est-ce que Chatwork Mention to Team ?

Chatwork Mention to Team est une extension Chrome développée par yamatomo73, et sa fonction principale est "Chatworkでグループチャットに設定されているチームにメンションできるようにする拡張機能".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chatwork Mention to Team

Téléchargez les fichiers d'extension Chatwork Mention to Team au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Chatworkではチーム機能がありますが、チームにメンションする仕組みがありません。 Chrome拡張機能で、グループチャットに設定されているチームメンバーごとにTOを送る拡張です。                    

Informations de Base sur l'Extension

Nom Chatwork Mention to Team Chatwork Mention to Team
ID gbofncipdgnliehdohjimpdelcmpdeap
URL Officiel https://chromewebstore.google.com/detail/chatwork-mention-to-team/gbofncipdgnliehdohjimpdelcmpdeap
Description Chatworkでグループチャットに設定されているチームにメンションできるようにする拡張機能
Taille du Fichier 39.05 KB
Nombre d'Installations 277
Version Actuelle 0.1
Dernière Mise à Jour 2021-11-06
Date de Publication 2021-11-06
Évaluation 4.00/5 Total 1 Évaluations
Développeur yamatomo73
Email [email protected]
Type de Paiement free
Langues Prises en Charge ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatwork Mention to Team",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Chatwork\u3067\u30b0\u30eb\u30fc\u30d7\u30c1\u30e3\u30c3\u30c8\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u30c1\u30fc\u30e0\u306b\u30e1\u30f3\u30b7\u30e7\u30f3\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u62e1\u5f35\u6a5f\u80fd",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "cookies"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "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
        }
    ]
}