Scroll Stop

Stop scrolling too far, and stay focused on what's important
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scroll Stop",
  "options_page": "settings.html",
  "description": "Stop scrolling too far, and stay focused on what's important",
  "version": "0.0.6",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "javascript/inline.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/icon19-grey.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "javascript/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/"
  ]
}