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ファイルをダウンロード
Slack Draw拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" } |