Scrroll-Recall

An extension to save scroll position of a webpage

什么是Scrroll-Recall?

Scrroll-Recall是由D.Mahamood Sameer开发的Chrome扩展程序,该扩展的主要功能是“An extension to save scroll position of a webpage”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Scrroll-Recall扩展crx文件

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