Slack Draw
Draw on Slack and share your drawings with the team
ما هو Slack Draw؟
Slack Draw هو إضافة Chrome تم تطويرها بواسطة caiosba، والميزة الرئيسية لها هي "Draw on Slack and share your drawings with the team".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Slack Draw
قم بتنزيل ملفات الامتداد Slack Draw بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" } |