Scrroll-Recall

An extension to save scroll position of a webpage

Scrroll-Recall क्या है?

Scrroll-Recall D.Mahamood Sameer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to save scroll position of a webpage"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scrroll-Recall एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/"
    ]
}