Scroll to Top

Scroll to Top

Add a stylish scroll-to-top button for all websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.1resigned1",
  "manifest_version": 2,
  "name": "Scroll to Top",
  "permissions": [
    "storage"
  ],
  "short_name": "scroll-to-top",
  "background": {
    "page": "lib/chrome/background.html"
  },
  "homepage_url": "http://mybrowseraddon.com/scroll-to-top.html",
  "description": "Add a stylish scroll-to-top button for all websites.",
  "commands": {
    "toggle-default-mode": {
      "description": "Scroll to Top",
      "suggested_key": {
        "default": "Ctrl+Shift+D",
        "mac": "Command+Shift+D"
      }
    }
  },
  "browser_action": {
    "default_title": "Scroll to Top",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "data/content_script/inject.js"
      ],
      "css": [
        "data/content_script/inject.css"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{bc578e65-f788-4bca-86e2-83887499b6e3}"
    }
  }
}