Anti-distractor for StackExchange

Anti-distractor for StackExchange

Hides the sidebar on StackExchange to help you focus.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.5",
  "name": "Anti-distractor for StackExchange",
  "short_name": "AD for SE",
  "description": "Hides the sidebar on StackExchange to help you focus.",
  "browser_specific_settings": {
    "gecko": {
      "id": "{35a7ca1b-9620-4520-8ffc-9acfc65355ac}"
    }
  },
  "icons": {
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "browser_style": true,
    "default_popup": "popup.html",
    "default_icon": "icons/32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.stackexchange.com/*",
        "*://*.stackoverflow.com/*",
        "*://*.superuser.com/*",
        "*://*.serverfault.com/*",
        "*://*.mathoverflow.com/*",
        "*://*.askubuntu.com/*"
      ],
      "js": [
        "functions.js",
        "script.js"
      ]
    }
  ]
}