Spiroll

Spiroll

A new scrolling gesture. Hold control and spiral the mouse clockwise for down, counter-clockwise for up.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Spiroll",
  "version": "1.0",
  "default_locale": "en",
  "description": "A new scrolling gesture. Hold control and spiral the mouse clockwise for down, counter-clockwise for up.",
  "icons": {
    "16": "spirollogo.png",
    "48": "spirollogo.png",
    "128": "spirollogo.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "spirollogo.png",
      "24": "spirollogo.png",
      "32": "spirollogo.png"
    },
    "default_title": "Spiroll"
  },
  "author": "Avram Block and Theodore Laurita",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "spirollStyle.css"
      ],
      "js": [
        "spiroll.js"
      ]
    }
  ],
  "offline_enabled": true
}