Scroll to top

Scroll to top

Just a scroll to top button for all sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scroll to top",
  "version": "1.5",
  "description": "__MSG_app_description__",
  "default_locale": "en_US",
  "permissions": [
    "<all_urls>"
  ],
  "options_page": "src/html/options.html",
  "background": {
    "scripts": [
      "src/js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "src/img/small-arrow-1.png",
    "default_title": "Scroll to Top"
  },
  "icons": {
    "16": "src/img/small-arrow-1.png",
    "48": "src/img/middle-arrow-1.png",
    "128": "src/img/big-arrow-1.png"
  },
  "manifest_version": 2,
  "offline_enabled": true
}