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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" } |