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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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:\/\/*\/"
    ]
}