Slack Draw
Draw on Slack and share your drawings with the team
Slack Draw란 무엇입니까?
Slack Draw은(는) caiosba에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Draw on Slack and share your drawings with the team"입니다.
확장 프로그램 스크린샷
Slack Draw 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension lets you draw and share your drawings on Slack. Check the video and screenshot to see how to use it. Go to the options page of the extension and put your Slack token, which you can get from https://api.slack.com/custom-integrations/legacy-tokens (click you on the green button "Create token" and you'll get a token like xoxp-0123456789-12345678). Code and full documentation are available at https://github.com/caiosba/slackdraw.
확장 프로그램 기본 정보
이름 | |
ID | koafpkkggpelmnganfmkabbacefhkcgj |
공식 URL | https://chrome.google.com/webstore/detail/slack-draw/koafpkkggpelmnganfmkabbacefhkcgj |
설명 | Draw on Slack and share your drawings with the team |
파일 크기 | 106 KB |
설치 횟수 | 885 |
현재 버전 | 0.0.61 |
최근 업데이트 | 2017-06-12 |
출시 날짜 | 2017-06-12 |
평점 | 2.64/5 총 14 개의 평점 |
개발자 | caiosba |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/caiosba/slackdraw |
도움말 페이지 URL | https://github.com/caiosba/slackdraw |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "jquery-1.8.3.min.js", "sketch.min.js", "jquery.simplemodal.1.4.4.min.js", "canvas-to-blob.min.js", "slackdraw.js" ], "css": [ "slackdraw.css", "modal.css" ], "matches": [ "https:\/\/*.slack.com\/*" ], "run_at": "document_start" } ], "description": "Draw on Slack and share your drawings with the team", "icons": { "128": "icon128.png", "48": "icon48.png" }, "options_page": "options.html", "manifest_version": 2, "name": "Slack Draw", "permissions": [ "activeTab", "storage" ], "version": "0.0.61" } |