Slack Draw

Draw on Slack and share your drawings with the team

Cos'è Slack Draw?

Slack Draw è un'estensione di Chrome sviluppata da caiosba, e la sua funzione principale è "Draw on Slack and share your drawings with the team".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Slack Draw

Scarica i file di estensione Slack Draw in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Slack Draw Slack Draw
ID koafpkkggpelmnganfmkabbacefhkcgj
URL Ufficiale https://chrome.google.com/webstore/detail/slack-draw/koafpkkggpelmnganfmkabbacefhkcgj
Descrizione Draw on Slack and share your drawings with the team
Dimensione del File 106 KB
Conteggio Installazioni 885
Versione Corrente 0.0.61
Ultimo Aggiornamento 2017-06-12
Data di Pubblicazione 2017-06-12
Valutazione 2.64/5 Totale 14 Valutazioni
Sviluppatore caiosba
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/caiosba/slackdraw
URL della Pagina di Aiuto https://github.com/caiosba/slackdraw
Lingue Supportate 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"
}