Scrroll-Recall

An extension to save scroll position of a webpage

Τι είναι το Scrroll-Recall;

Το Scrroll-Recall είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον D.Mahamood Sameer, και η κύρια λειτουργία του είναι "An extension to save scroll position of a webpage".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Scrroll-Recall

Λήψη αρχείων επέκτασης 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:\/\/*\/"
    ]
}