Easy Scroll

Easy Scroll

This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Scroll",
  "version": "1.20",
  "manifest_version": 3,
  "description": "This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/jquery.min.js",
        "src/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "19": "images/icon_19.png",
      "32": "images/icon_32.png",
      "38": "images/icon_38.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Easy Scroll"
  },
  "background": {
    "service_worker": "src/background.js"
  },
  "options_page": "src/options.html",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}