Reddit Scroller

Reddit Scroller

Automatically scroll to the next Reddit post after however many seconds the user wants.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.6.0",
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.reddit.com/*"
      ],
      "js": [
        "scroller.js"
      ]
    },
    {
      "matches": [
        "https://old.reddit.com/*"
      ],
      "js": [
        "scrollerOld.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_appName__"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "default_locale": "en"
}