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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Slack Draw Slack Draw
ID koafpkkggpelmnganfmkabbacefhkcgj
官方網址 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"
}