Better Stack Exchange

Better Stack Exchange

A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better Stack Exchange",
  "description": "A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.",
  "version": "0.0.5",
  "author": "Titus Woo",
  "homepage_url": "http://tituswoo.com",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "bse-icon.png"
  },
  "options_ui": {
    "page": "options/index.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.stackoverflow.com/*",
        "*://*.serverfault.com/*",
        "*://*.superuser.com/*",
        "*://*.askubuntu.com/*",
        "*://*.stackapps.com/*",
        "*://*.mathoverflow.net/*",
        "*://*.stackexchange.com/*"
      ],
      "js": [
        "content/index.js"
      ]
    }
  ]
}