Examine source code of autoScroll

Inspect and view changes in autoScroll source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "autoScroll",
  "version": "1.2",
  "manifest_version": 2,
  "description": "auto scroll your webpage when you are reading a long content",
  "icons": {
    "48": "icons/logo_48.png",
    "64": "icons/logo_64.png"
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/autoScroll.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.jpeg"
  ]
}