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…

O que é ScrollMark (Autosave Scroll Position)?

ScrollMark (Autosave Scroll Position) é uma extensão do Chrome desenvolvida por suresh.falor, e sua principal característica é "ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…".

Baixar o arquivo CRX da Extensão ScrollMark (Autosave Scroll Position)

Baixe arquivos de extensão ScrollMark (Autosave Scroll Position) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome ScrollMark (Autosave Scroll Position) ScrollMark (Autosave Scroll Position)
ID gekidlkidjohjompjafiphdpgejjgklo
URL Oficial https://chrome.google.com/webstore/detail/scrollmark-autosave-scrol/gekidlkidjohjompjafiphdpgejjgklo
Descrição ScrollMark is a small yet intuitive extension created to save you time and effort. It's frustrating when you return to a long…
Tamanho do Arquivo 47.08 KB
Contagem de Instalações 465
Versão Atual 0.2
Última Atualização 2015-04-24
Data de Publicação 2015-04-24
Classificação 2.90/5 Total de 29 Avaliações
Desenvolvedor suresh.falor
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}