Grab n' Drag - Scrolling made easy

Grab n' Drag - Scrolling made easy

Scroll web pages by dragging them with your mouse

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Grab n' Drag - Scrolling made easy",
  "short_name": "Grab n' Drag",
  "manifest_version": 2,
  "description": "Scroll web pages by dragging them with your mouse",
  "version": "1.0",
  "permissions": [],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "images/iconColor38.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persist": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "pan.js"
      ]
    }
  ]
}