Slack Draw

Draw on Slack and share your drawings with the team

¿Qué es Slack Draw?

Slack Draw es una extensión de Chrome desarrollada por caiosba, y su función principal es "Draw on Slack and share your drawings with the team".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Slack Draw

Descarga archivos de extensión Slack Draw en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Slack Draw Slack Draw
ID koafpkkggpelmnganfmkabbacefhkcgj
URL Oficial https://chrome.google.com/webstore/detail/slack-draw/koafpkkggpelmnganfmkabbacefhkcgj
Descripción Draw on Slack and share your drawings with the team
Tamaño del Archivo 106 KB
Cantidad de Instalaciones 885
Versión Actual 0.0.61
Última Actualización 2017-06-12
Fecha de Publicación 2017-06-12
Calificación 2.64/5 Total de 14 Calificaciones
Desarrollador caiosba
Tipo de Pago free
Sitio Web de la Extensión https://github.com/caiosba/slackdraw
URL de la Página de Ayuda https://github.com/caiosba/slackdraw
Idiomas Soportados 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"
}