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"입니다.
확장 프로그램 스크린샷
Slack Enter Key Modifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 |
이메일 | [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 } ] } |