Scrroll-Recall

An extension to save scroll position of a webpage

Scrroll-Recall là gì?

Scrroll-Recall là một tiện ích mở rộng Chrome được phát triển bởi D.Mahamood Sameer, và tính năng chính của nó là "An extension to save scroll position of a webpage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scrroll-Recall

Tải xuống các tệp mở rộng Scrroll-Recall dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scrroll-Recall Scrroll-Recall
ID jeppjkgmanikcicbhpohghbjckijageo
URL Chính Thức https://chromewebstore.google.com/detail/scrroll-recall/jeppjkgmanikcicbhpohghbjckijageo
Mô tả An extension to save scroll position of a webpage
Kích Thước Tệp 21.19 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-08-30
Ngày Phát Hành 2021-08-30
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển D.Mahamood Sameer
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/"
    ]
}