Examine source code of Blinders

Inspect and view changes in Blinders 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": "Blinders",
  "version": "0.1.2",
  "description": "Hides/shows distracting elements on select websites. Free your mind.",
  "icons": {
    "48": "icons/blinders-icon.svg",
    "96": "icons/blinders-icon.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.twitter.com/*",
        "*://news.ycombinator.com/*"
      ],
      "js": [
        "blinders.js"
      ],
      "css": [
        "blinders.css"
      ]
    }
  ]
}