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是由Ross Jacobs開發的Chrome擴展程式,該擴展的主要功能是“Disables Slack Wysiwyg 'Feature'. Based on Kevin Fahy's script at https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet.”。

擴展截圖

screenshot

下載Disable Slack Wysiwyg擴展crx文件

下載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 Disable Slack Wysiwyg
ID jenojkbpialbgpbgokiakifhpmoponjn
官方網址 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"
    ]
}