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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Slack Draw

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Slack Draw Slack Draw
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"
}