SE Block

SE Block

Block all of that distracting sidebar stuff in the excellent Stack Exchange network.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "short_name": "SE Block",
  "author": "@chrisbodhi",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://stackoverflow.com/*",
        "*://*.stackoverflow.com/*",
        "*://stackexchange.com/*",
        "*://*.stackexchange.com/*",
        "*://serverfault.com/*",
        "*://superuser.com/*",
        "*://askubuntu.com/*",
        "*://stackapps.com/*",
        "*://mathoverflow.net/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "*://stackoverflow.com/*",
    "*://*.stackoverflow.com/*",
    "*://stackexchange.com/*",
    "*://*.stackexchange.com/*",
    "*://serverfault.com/*",
    "*://superuser.com/*",
    "*://askubuntu.com/*",
    "*://stackapps.com/*",
    "*://mathoverflow.net/*"
  ]
}