Examine source code of Scrollbar Hider

Inspect and view changes in Scrollbar Hider source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Scrollbar Hider",
  "version": "1.0",
  "description": "Hides all the scrollbars from websites (For horizontal scrolling use Shift+Scroll Wheel).",
  "author": "Peter Tsonis",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "scrollbar-hider@hypewaregr.weebly.com"
    }
  }
}