Scrroll-Recall

An extension to save scroll position of a webpage

ما هو Scrroll-Recall؟

Scrroll-Recall هو إضافة Chrome تم تطويرها بواسطة D.Mahamood Sameer، والميزة الرئيسية لها هي "An extension to save scroll position of a webpage".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Scrroll-Recall

قم بتنزيل ملفات الامتداد Scrroll-Recall بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        An extension to save scroll position of a webpage

You must have ran in to a situation that you are reading a long article or document but you don't have sufficient time to finish it , so you close the tab, and the next time when you open the article or the document again, you have no idea where you left it. But with this extension your problem is solved . This extension saves the scroll position of the page and when you click the "fetch scroll" button the page scrolls to the saved position ✔.

This extension consists of :
👉Simple User Interference🤩
👉Simple User Experience✨

More features coming soon.......✌                    

معلومات أساسية عن التمديد

الاسم Scrroll-Recall Scrroll-Recall
ID jeppjkgmanikcicbhpohghbjckijageo
عنوان URL الرسمي https://chromewebstore.google.com/detail/scrroll-recall/jeppjkgmanikcicbhpohghbjckijageo
الوصف An extension to save scroll position of a webpage
حجم الملف 21.19 KB
عدد التثبيتات 24
النسخة الحالية 1.0.0
آخر تحديث 2021-08-30
تاريخ النشر 2021-08-30
تقييم 5.00/5 مجموع تقييمات 4
المطور D.Mahamood Sameer
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scrroll-Recall",
    "version": "1.0.0",
    "description": "An extension to save scroll position of a webpage",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}