Slack Draw

Draw on Slack and share your drawings with the team

Slack Draw क्या है?

Slack Draw caiosba द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Draw on Slack and share your drawings with the team"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Slack Draw एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.                    

एक्सटेंशन की मूल जानकारी

नाम 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"
}