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…

¿Qué es ScrollMark (Autosave Scroll Position)?

ScrollMark (Autosave Scroll Position) es una extensión de Chrome desarrollada por suresh.falor, y su función principal es "ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…".

Descargar Archivo CRX de la Extensión ScrollMark (Autosave Scroll Position)

Descarga archivos de extensión ScrollMark (Autosave Scroll Position) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ScrollMark is a small yet intuitive extension created to save you time and effort. 

It's frustrating when you return to a long article, blog post, or online reference, only to find that you've lost your original position. 

Simply click on the ScrollMark icon at the top next to the URL bar once the page loads to scroll down to where you left off. It's that simple!

As always, I welcome your suggestions and criticisms on how to make this better.

-- Rohit                    

Información Básica de la Extensión

Nombre ScrollMark (Autosave Scroll Position) ScrollMark (Autosave Scroll Position)
ID gekidlkidjohjompjafiphdpgejjgklo
URL Oficial https://chrome.google.com/webstore/detail/scrollmark-autosave-scrol/gekidlkidjohjompjafiphdpgejjgklo
Descripción ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…
Tamaño del Archivo 47.08 KB
Cantidad de Instalaciones 465
Versión Actual 0.2
Última Actualización 2015-04-24
Fecha de Publicación 2015-04-24
Calificación 2.90/5 Total de 29 Calificaciones
Desarrollador suresh.falor
Tipo de Pago free
Idiomas Soportados en
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": [
                ""
            ],
            "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"
    }
}