Scrolantana

Hide main scrollbar in all webpages
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": "Scrolantana",
  "version": "1.0",
  "description": "Control apperance of scrollbars in all webpages",
  "icons": {
    "256": "icons/icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "scrollbar-style.css"
      ]
    }
  ]
}