Disable Slack Wysiwyg

Disable Slack Wysiwyg

Disables Slack Wysiwyg 'Feature'. Based on Kevin Fahy's script at https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet.

Merlin
Additional files are visible only to premium users

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"
  ]
}