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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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