TopScroll

Click on the left border of any page for scroll to the top.

Τι είναι το TopScroll;

Το TopScroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Anthony, και η κύρια λειτουργία του είναι "Click on the left border of any page for scroll to the top.".

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

screenshot
screenshot
screenshot

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

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

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

                        ★ Click on the left border of any page for scroll to the top. Just pull the cursor to the left screen edge, click — and you're there!
★ Click again — and you're back where stopped reading.
★ Or right click for scroll to the bottom.

There are already a number of Chrome extensions which can add the "scroll up" buttons in all possible places cluttering the precious screen space. With TopScroll you won't need such buttons and will be able to do rapid scrolling since moving the mouse to the left and clicking is the easiest thing to do.

If you use the browser not in fullscreen mode, you may want to increase clickable area width in the extension options.

It does not affect the appearance of web pages.
It may not work on some sites with tricky page layouts. If you found a popular website where the extension doesn't work — feel free to shoot a bug report here or on GitHub.
Repository: https://github.com/sv3k/topscroll
Change log: https://github.com/sv3k/topscroll/releases                    

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

Όνομα TopScroll TopScroll
ID hnninpkmflibadgihijdmlilikhdgajj
Επίσημο URL https://chromewebstore.google.com/detail/topscroll/hnninpkmflibadgihijdmlilikhdgajj
Περιγραφή Click on the left border of any page for scroll to the top.
Μέγεθος Αρχείου 99.99 KB
Αριθμός Εγκαταστάσεων 2,756
Τρέχουσα Έκδοση 1.8.6
Τελευταία Ενημέρωση 2023-08-25
Ημερομηνία Δημοσίευσης 2019-01-17
Αξιολόγηση 4.85/5 Συνολικά 109 Αξιολογήσεις
Προγραμματιστής Anthony
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sv3k/topscroll
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sv3k/topscroll/issues
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TopScroll",
    "short_name": "TopScroll",
    "description": "__MSG_appDesc__",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "default_locale": "en",
    "version": "1.8.6",
    "manifest_version": 2,
    "offline_enabled": true,
    "author": "Anton Gorbunov",
    "homepage_url": "https:\/\/github.com\/sv3k\/topscroll",
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "basic.css"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_browserAction__",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}