sUpper

Move to the top to force the scroll bar by clicking on the icon.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "0.9.4",
  "manifest_version": 2,
  "description": "__MSG_description__",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "default_locale": "en",
  "minimum_chrome_version": "20.0.0.0",
  "background": {
    "scripts": [
      "src/background/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/common/lib/jquery.min.js",
        "src/common/lib/jquery.bottom.js",
        "src/content_scripts/script.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": "icon/128.png",
    "default_title": "__MSG_name__"
  },
  "web_accessible_resources": [
    "icon/64.png"
  ],
  "permissions": [
    "tabs"
  ]
}