Scroll Memory

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

Vad är Scroll Memory?

Scroll Memory är en Chrome-tillägg utvecklad av David Gilbertson, och dess huvudfunktion är "Remembers the sroll position of the page, great for reading really long pages.".

Tilläggsskärmbilder

screenshot

Ladda ner Scroll Memory-förlängningens CRX-fil

Ladda ner Scroll Memory-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Scroll Memory Scroll Memory
ID iidnpfiaeiohlkmaehhjoiffcmjclpap
Officiell webbadress https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap
Beskrivning Remembers the sroll position of the page, great for reading really long pages.
Filstorlek 13.69 KB
Antal Installationer 1,025
Aktuell Version 0.1.6
Senast Uppdaterad 2014-05-20
Publiceringsdatum 2014-05-20
Betyg 4.09/5 Totalt 23 Betyg
Utvecklare David Gilbertson
Betalningssätt free
Stödda Språk 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
        }
    ]
}