Scrroll In

An extension to save scroll position of a webpage

Τι είναι το Scrroll In;

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

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

screenshot
screenshot
screenshot
screenshot

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

Λήψη αρχείων επέκτασης Scrroll In σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ✨ What's new - 
- You can now save upto 20 scroll positions for any page and manage (get, update and delete) them individually.
- Added an opt-in to show toasts when performing actions with a scrroll for better UX (Experimental).

You must have been in a situation wherein you are reading a long article but you don't have enough time to finish it so you close the tab, and the next time you open the article again, you have no idea where you left it. 

Well not anymore, with this extension you can save the scroll position of the page and then revisit the page at any time to continue where you left. 

I know that there are other extensions similar to this, but most of them either don't work reliably or lack the features mentioned below - 

🤹 Color changing icon
The icon changes color whenever the extension detects that you have already saved a scroll position for a page.

✨ Sleek UI
Ability to add, remove, update or delete the scroll position directly from the popup menu.

💾 Unlimited Storage
Under the hood this extension uses chrome's local storage API, so you'll never run out of storage for your articles.

🤳 View all your saved scrrolls
An options page to view all your saved pages, with the percentage of the page completed.

📜 Completely free and open source
Scrroll In was and will always be free to use and open source. Feel free to open an issue for feature request or bug report on the issues page on Github                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Scrroll In Scrroll In
ID cjgjbjogfodppempgdlppgefojbcmjom
Επίσημο URL https://chromewebstore.google.com/detail/scrroll-in/cjgjbjogfodppempgdlppgefojbcmjom
Περιγραφή An extension to save scroll position of a webpage
Μέγεθος Αρχείου 222 KB
Αριθμός Εγκαταστάσεων 2,316
Τρέχουσα Έκδοση 3.2
Τελευταία Ενημέρωση 2021-07-18
Ημερομηνία Δημοσίευσης 2020-05-10
Αξιολόγηση 4.09/5 Συνολικά 32 Αξιολογήσεις
Προγραμματιστής Prateek Surana
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrroll In",
    "short_name": "scrroll-in",
    "version": "3.2",
    "description": "An extension to save scroll position of a webpage",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png",
            "256": "images\/icon-256.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "commands": {
        "save-scroll": {
            "suggested_key": {
                "default": "Shift+Ctrl+S",
                "mac": "Shift+Command+S"
            },
            "description": "Save scrroll"
        },
        "fetch-scroll": {
            "suggested_key": {
                "default": "Shift+Ctrl+G",
                "mac": "Shift+Command+G"
            },
            "description": "Fetch Latest scrroll"
        }
    },
    "manifest_version": 3
}