Scroll Top

Scroll Top

Scroll top on any pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scroll Top",
  "version": "1.0.0",
  "description": "Scroll top on any pages.",
  "manifest_version": 2,
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libs/jquery/jquery.js",
        "js/content_scripts.js"
      ]
    }
  ],
  "browser_action": {},
  "background": {
    "page": "html/background.html"
  },
  "permissions": [],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'"
}