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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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:\/\/*\/"
    ]
}