Scroll Memory

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

Qu'est-ce que Scroll Memory ?

Scroll Memory est une extension Chrome développée par David Gilbertson, et sa fonction principale est "Remembers the sroll position of the page, great for reading really long pages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Scroll Memory

Téléchargez les fichiers d'extension Scroll Memory au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom Scroll Memory Scroll Memory
ID iidnpfiaeiohlkmaehhjoiffcmjclpap
URL Officiel https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap
Description Remembers the sroll position of the page, great for reading really long pages.
Taille du Fichier 13.69 KB
Nombre d'Installations 1,025
Version Actuelle 0.1.6
Dernière Mise à Jour 2014-05-20
Date de Publication 2014-05-20
Évaluation 4.09/5 Total 23 Évaluations
Développeur David Gilbertson
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}