Slack Enter Key Modifier

Enter should send message always on Slack.com

Slack Enter Key Modifierとは何ですか?

Slack Enter Key ModifierはSatoru Takanamiによって開発されたChromeの拡張機能で、その主な機能は「Enter should send message always on Slack.com」です。

拡張機能のスクリーンショット

screenshot

Slack Enter Key Modifier拡張機能のCRXファイルをダウンロード

Slack Enter Key Modifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        If you turned off checkbox on input area, this extension works below. (NOTE: Default is on)

Start a new line:
- Enter

Post message:
- Shift + Enter
- Ctrl + Enter
- ⌘ + Enter (Mac)                    

拡張機能の基本情報

名前 Slack Enter Key Modifier Slack Enter Key Modifier
ID ejlmecppipaakakoclcfmlnheifdngeg
公式URL https://chromewebstore.google.com/detail/slack-enter-key-modifier/ejlmecppipaakakoclcfmlnheifdngeg
説明 Enter should send message always on Slack.com
ファイルサイズ 36.67 KB
インストール数 545
現在のバージョン 1.0.6
最終更新日 2017-11-17
公開日 2017-11-16
評価 4.53/5 合計 15 レビュー
開発者 Satoru Takanami
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/storz
対応言語 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "https:\/\/*.slack.com\/messages\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/messages\/*"
            ],
            "js": [
                "scripts\/contentscript.js",
                "scripts\/checkbox.js"
            ],
            "css": [
                "styles\/checkbox.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}