Auto Scroll

Auto Scroll

Automatically scroll down on your current web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Scroll",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Automatically scroll down on your current web page",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "editor.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "editor.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}