Reddit Nav

Reddit Nav

Effortlessly scroll through comment threads on Reddit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reddit Nav",
  "description": "Effortlessly scroll through comment threads on Reddit.",
  "version": "1.1.2",
  "browser_action": {
    "default_icon": "popup/icon128.png",
    "default_popup": "popup/popup.html",
    "default_title": "RedditNav"
  },
  "icons": {
    "48": "popup/icon48.png",
    "128": "popup/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "redditnav.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/*/comments/*"
      ],
      "css": [
        "redditnav.css"
      ],
      "js": [
        "redditnav.js"
      ]
    }
  ]
}