Hand Tool for browser

Hand Tool for browser

Will enable you to scroll by dragging while holding down the space key, just like photo processing or illustration creation apps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.2.1",
  "description": "__MSG_extDesc__",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icon.png"
  },
  "default_locale": "en"
}