Scroller

Scroller

Scrolls the page for you!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scroller",
  "description": "Scrolls the page for you!",
  "version": "1.1.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Scroller",
    "default_icon": {
      "16": "./images/logo_16.png",
      "32": "./images/logo_32.png",
      "48": "./images/logo_48.png",
      "128": "./images/logo_128.png"
    }
  },
  "icons": {
    "16": "./images/logo_16.png",
    "32": "./images/logo_32.png",
    "48": "./images/logo_48.png",
    "128": "./images/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./libs/css-selector-generator.js",
        "constants.js",
        "./utils/common-utils.js",
        "./utils/storage-utils.js",
        "content.js"
      ]
    }
  ],
  "incognito": "split"
}