Disable Slack Wysiwyg
Disables Slack Wysiwyg 'Feature'. Based on Kevin Fahy's script at https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet.
Τι είναι το Disable Slack Wysiwyg;
Το Disable Slack Wysiwyg είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ross Jacobs, και η κύρια λειτουργία του είναι "Disables Slack Wysiwyg 'Feature'. Based on Kevin Fahy's script at https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Disable Slack Wysiwyg
Λήψη αρχείων επέκτασης Disable Slack Wysiwyg σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
UPDATE (2019-12-18): The script this extension is based on no longer works (as of Slack version hash 0756f06a6f0457de4e355149a4321a9abb8befa5). For more information (or to help fix this), read the issue: https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet/issues/27. Disables Slack's new wysiwyg text editor. Slack used to have the ability to use markdown in their text. They changed this permanently for all users without the ability to go back. Per Arthur O’Dwyer on his blog entry that was posted on Hacker News (https://quuxplusone.github.io/blog/2019/11/20/slack-rich-text-box/, 2019-11-20): >>> Slack has just recently rolled out a “WYSIWYG text input” widget to its Web browser interface. (Apparently, the phased rollout started at the beginning of November 2019, but it’s just now starting to hit the workspaces that I participate in.) The user experience of using this new input method is really, really, really bad. Kevin Fahy created a short script that allows users to disable the new wysiwyg editor (https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet). This extension is adapted from that script: Github: https://github.com/pocc/no-wysiwyg. To see it in action, look at the screenshot. Inspired by the Hacker News articles: https://news.ycombinator.com/item?id=21589647, https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet
Βασικές Πληροφορίες Επέκτασης
Όνομα | Disable Slack Wysiwyg |
ID | jenojkbpialbgpbgokiakifhpmoponjn |
Επίσημο URL | https://chromewebstore.google.com/detail/disable-slack-wysiwyg/jenojkbpialbgpbgokiakifhpmoponjn |
Περιγραφή | Disables Slack Wysiwyg 'Feature'. Based on Kevin Fahy's script at https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet. |
Μέγεθος Αρχείου | 13.41 KB |
Αριθμός Εγκαταστάσεων | 51 |
Τρέχουσα Έκδοση | 0.1.1 |
Τελευταία Ενημέρωση | 2019-12-20 |
Ημερομηνία Δημοσίευσης | 2019-12-20 |
Αξιολόγηση | 4.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Ross Jacobs |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/pocc/no-wysiwyg |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/pocc/no-wysiwyg |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "loader.js" ], "matches": [ "*:\/\/*.slack.com\/*" ], "run_at": "document_idle" } ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "description": "Disables Slack Wysiwyg 'Feature'. Based on Kevin Fahy's script at https:\/\/github.com\/kfahy\/slack-disable-wysiwyg-bookmarklet.", "manifest_version": 2, "author": "Ross Jacobs", "name": "Disable Slack Wysiwyg", "version": "0.1.1", "web_accessible_resources": [ "index.js" ] } |