Sidebar Toggle

Sidebar Toggle

Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "permissions": [
    "storage",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "onload.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "fold.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Ctrl+Shift+E"
      }
    }
  },
  "author": "Sinan Midillili",
  "name": "Sidebar Toggle",
  "short_name": "ST",
  "description": "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E",
  "version": "0.1.0.1",
  "manifest_version": 2,
  "icons": {
    "16": "fold.png",
    "48": "fold.png",
    "128": "fold.png"
  }
}