Scrollmarks

Saves your scroll location & scrolls to it on page reload

What is Scrollmarks?

Scrollmarks is a Chrome extension developed by kcarrhall12, and its main feature is "Saves your scroll location & scrolls to it on page reload".

Download Scrollmarks Extension CRX File

Download Scrollmarks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Left click to mark/unmark the scroll location for a page. On page reload, you will be scrolled to the saved location.

Scrollmarks can keep track of multiple pages, but only keeps track of one mark per page. 

Does not work with all webpages.

https://github.com/kcarrhall/Scrollmarks                    

Extension Basic Information

Name Scrollmarks Scrollmarks
ID dhgphpilnllknnoaafmgobkmnialglad
Official URL https://chrome.google.com/webstore/detail/scrollmarks/dhgphpilnllknnoaafmgobkmnialglad
Description Saves your scroll location & scrolls to it on page reload
File Size 14.37 KB
Installation Count 70
Current Version 0.1.3
Last Updated 2017-07-07
Publish Date 2017-07-07
Rating 4.75/5 Total 4 Ratings
Developer kcarrhall12
Payment Type free
Extension Website https://github.com/kcarrhall/Scrollmarks
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scrollmarks",
    "description": "Saves your scroll location & scrolls to it on page reload",
    "version": "0.1.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/transparentIcon.png",
        "default_title": ""
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}