Reddit Next

Reddit Next

read reddit post and comments side by side with next button. hide visited posts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Next",
  "short_name": "reddit-next",
  "description": "read reddit post and comments side by side with next button. hide visited posts. ",
  "version": "3.03",
  "manifest_version": 3,
  "action": {
    "name": "click to load next post"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "reddit-old.css"
      ],
      "matches": [
        "https://old.reddit.com/*"
      ]
    }
  ],
  "icons": {
    "16": "reddit-next.png",
    "48": "reddit-128x128.png",
    "128": "reddit-128x128.png"
  }
}