Auto Scroll: Effortless Page Navigation Chrome Extension

Auto Scroll: Effortless Page Navigation Chrome Extension

Enhance browsing by automating page scrolling. Customizable speeds & loop options. Streamline content consumption effortlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Scroll: Effortless Page Navigation Chrome Extension",
  "version": "2.0",
  "description": "Enhance browsing by automating page scrolling. Customizable speeds & loop options. Streamline content consumption effortlessly.",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}