Scroll Memory

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

Scroll Memory क्या है?

Scroll Memory David Gilbertson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remembers the sroll position of the page, great for reading really long pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scroll Memory एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
        }
    ]
}