Scroll Memory

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

O que é Scroll Memory?

Scroll Memory é uma extensão do Chrome desenvolvida por David Gilbertson, e sua principal característica é "Remembers the sroll position of the page, great for reading really long pages.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Scroll Memory

Baixe arquivos de extensão Scroll Memory 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

                        Imagine you're reading a very long article. You don't have time to finish it now, but if you leave the page and come back later you'll lose the position you're up to.
That's where this spectacularly useful extension comes to your rescue. Just click the icon and BAM, your position on the page will be remembered (on any computer you have Chrome syncing).                    

Informações Básicas da Extensão

Nome Scroll Memory Scroll Memory
ID iidnpfiaeiohlkmaehhjoiffcmjclpap
URL Oficial https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap
Descrição Remembers the sroll position of the page, great for reading really long pages.
Tamanho do Arquivo 13.69 KB
Contagem de Instalações 1,025
Versão Atual 0.1.6
Última Atualização 2014-05-20
Data de Publicação 2014-05-20
Classificação 4.09/5 Total de 23 Avaliações
Desenvolvedor David Gilbertson
Tipo de Pagamento free
Idiomas Suportados en
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
        }
    ]
}