Fast Scroller

Fast Scroller

Extension for people who have degraded so much that click on the left half of any site to scroll up as a at Vkontakte.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDescription__",
  "author": "__MSG_author__",
  "version": "1.0",
  "default_locale": "uk",
  "homepage_url": "http://blastorq.url.ph/",
  "icons": {
    "256": "img/icon-256.png"
  },
  "browser_action": {
    "default_icon": "img/icon-256.png"
  },
  "background": {
    "scripts": [
      "js/script.js"
    ],
    "css": [
      "css/style.css"
    ]
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/script.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "img/*"
  ]
}