Slack Enter Key Modifier
Enter should send message always on Slack.com
What is Slack Enter Key Modifier?
Slack Enter Key Modifier is a Chrome extension developed by Satoru Takanami, and its main feature is "Enter should send message always on Slack.com".
Extension Screenshots
Download Slack Enter Key Modifier Extension CRX File
Download Slack Enter Key Modifier 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
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)
Extension Basic Information
Name | Slack Enter Key Modifier |
ID | ejlmecppipaakakoclcfmlnheifdngeg |
Official URL | https://chromewebstore.google.com/detail/slack-enter-key-modifier/ejlmecppipaakakoclcfmlnheifdngeg |
Description | Enter should send message always on Slack.com |
File Size | 36.67 KB |
Installation Count | 545 |
Current Version | 1.0.6 |
Last Updated | 2017-11-17 |
Publish Date | 2017-11-16 |
Rating | 4.53/5 Total 15 Ratings |
Developer | Satoru Takanami |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/storz |
Supported Languages | 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 } ] } |