Scroll Memory

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

Τι είναι το Scroll Memory;

Το Scroll Memory είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον David Gilbertson, και η κύρια λειτουργία του είναι "Remembers the sroll position of the page, great for reading really long pages.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Scroll Memory

Λήψη αρχείων επέκτασης Scroll Memory σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Scroll Memory Scroll Memory
ID iidnpfiaeiohlkmaehhjoiffcmjclpap
Επίσημο URL https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap
Περιγραφή Remembers the sroll position of the page, great for reading really long pages.
Μέγεθος Αρχείου 13.69 KB
Αριθμός Εγκαταστάσεων 1,025
Τρέχουσα Έκδοση 0.1.6
Τελευταία Ενημέρωση 2014-05-20
Ημερομηνία Δημοσίευσης 2014-05-20
Αξιολόγηση 4.09/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής David Gilbertson
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
        }
    ]
}