Scroll Memory

Scroll Memory

Remembers the sroll position of the page, great for reading really long pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scroll Memory",
  "version": "0.1.6",
  "manifest_version": 2,
  "description": "Remembers the sroll position of the page, great for reading really long pages.",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19-off.png",
      "38": "images/icon-38-off.png"
    },
    "default_title": "scroll memory"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}