Scroll to Death

Scroll to Death

Scrolling will waste your life.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scroll to Death",
  "version": "1.0",
  "description": "Scrolling will waste your life.",
  "manifest_version": 2,
  "icons": {
    "16": "/resources/16x16.png",
    "48": "/resources/48x48.png",
    "128": "/resources/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "/resources/icon.png",
    "default_popup": "popup.html",
    "default_title": "ScrollToDeath"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "/resources/images/*.png"
  ]
}