Examine source code of Replies for Hacker News

Inspect and view changes in Replies for Hacker News 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": 3,
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "1.0.1",
  "icons": {
    "48": "images/app_icon_48px.png",
    "96": "images/app_icon_96px.png",
    "128": "images/app_icon_128px.png",
    "256": "images/app_icon_256px.png",
    "512": "images/app_icon_512px.png"
  },
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "dist/content.js"
      ],
      "matches": [
        "*://news.ycombinator.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "public/*",
        "dist/*"
      ],
      "matches": [
        "*://news.ycombinator.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/toolbar_icon_16px.png",
      "19": "images/toolbar_icon_19px.png",
      "32": "images/toolbar_icon_32px.png",
      "38": "images/toolbar_icon_38px.png",
      "48": "images/toolbar_icon_48px.png",
      "72": "images/toolbar_icon_72px.png"
    }
  },
  "permissions": [
    "storage",
    "nativeMessaging"
  ],
  "options_ui": {
    "page": "public/settings.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "repliesforhn@nazariosoftware.com"
    }
  }
}