Reddit Under 100

Reddit Under 100

Highlights threads that contain under 100 comments. Toggle with ~ key.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Under 100",
  "description": "Highlights threads that contain under 100 comments. Toggle with ~ key.",
  "version": "2.0",
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "under.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "manifest_version": 3
}