ScrollMark (Autosave Scroll Position)

ScrollMark (Autosave Scroll Position)

ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ScrollMark (Autosave Scroll Position)",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "logo.png"
  }
}