Hide Reddit Sidebar

Hide Reddit Sidebar

Provides a button in the omnibar to hide the Reddit sidebar when browsing a subreddit. Specifically, any URL that matches "…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hide Reddit Sidebar",
  "version": "0.1",
  "page_action": {
    "default_title": "Hide Sidebar",
    "default_icon": "closed.png"
  },
  "background": {
    "scripts": [
      "hide-sidebar-eventpage.js"
    ],
    "persitant": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.reddit.com/r/*"
      ],
      "js": [
        "hide-sidebar-content.js"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "activeTab"
  ]
}