Slack Draw
Draw on Slack and share your drawings with the team
Slack Draw là gì?
Slack Draw là một tiện ích mở rộng Chrome được phát triển bởi caiosba, và tính năng chính của nó là "Draw on Slack and share your drawings with the team".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Slack Draw
Tải xuống các tệp mở rộng Slack Draw dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | koafpkkggpelmnganfmkabbacefhkcgj |
URL Chính Thức | https://chrome.google.com/webstore/detail/slack-draw/koafpkkggpelmnganfmkabbacefhkcgj |
Mô tả | Draw on Slack and share your drawings with the team |
Kích Thước Tệp | 106 KB |
Số Lần Cài Đặt | 885 |
Phiên Bản Hiện Tại | 0.0.61 |
Cập Nhật Lần Cuối | 2017-06-12 |
Ngày Phát Hành | 2017-06-12 |
Đánh Giá | 2.64/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | caiosba |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/caiosba/slackdraw |
URL Trang Trợ Giúp | https://github.com/caiosba/slackdraw |
Ngôn Ngữ Được Hỗ Trợ | 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" } |