Examine source code of uncommentedHN

Inspect and view changes in uncommentedHN 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "uncommentedHN",
  "version": "1.0.0",
  "description": "Removes comments from Hacker News",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "css": [
        "hideComments.css"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}