Scrroll-Recall

An extension to save scroll position of a webpage

Cos'è Scrroll-Recall?

Scrroll-Recall è un'estensione di Chrome sviluppata da D.Mahamood Sameer, e la sua funzione principale è "An extension to save scroll position of a webpage".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Scrroll-Recall

Scarica i file di estensione Scrroll-Recall in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Scrroll-Recall Scrroll-Recall
ID jeppjkgmanikcicbhpohghbjckijageo
URL Ufficiale https://chromewebstore.google.com/detail/scrroll-recall/jeppjkgmanikcicbhpohghbjckijageo
Descrizione An extension to save scroll position of a webpage
Dimensione del File 21.19 KB
Conteggio Installazioni 24
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-08-30
Data di Pubblicazione 2021-08-30
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore D.Mahamood Sameer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/"
    ]
}