Examine source code of New-Comments

Inspect and view changes in New-Comments 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
{
  "description": "Keep track of new comments on Reddit",
  "manifest_version": 3,
  "name": "New-Comments",
  "version": "20.0",
  "homepage_url": "https://github.com/cbeust/new-comments",
  "icons": {
    "48": "icon.png"
  },
  "key": "jldpfbgmbdnnjdgohphppjnpadogdime",
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*/comments/*"
      ],
      "js": [
        "jquery-3.7.1.slim.min.js",
        "browser-polyfill-min.js",
        "new-comments.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "cbeust@gmail.com",
      "strict_min_version": "58.0"
    }
  },
  "permissions": [
    "storage"
  ]
}