Fast Page Scroll

Quickly scroll to the top or bottom of any page without using the mouse wheel.

Τι είναι το Fast Page Scroll;

Το Fast Page Scroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.xhevi.com, και η κύρια λειτουργία του είναι "Quickly scroll to the top or bottom of any page without using the mouse wheel.".

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

screenshot
screenshot
screenshot

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

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

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

                        There are many "Scroll to top" extensions out there, but they all add a button to the page or browser's interface. That's ugly and bad user experience.

How about clicking anywhere on the top or bottom right corner of the page (where there is usually no content) and scroll automagically? That's exactly what this extension will do.

This is a feature I encountered at Basecamp, so the credit goes to 37signals. I liked it so much that I developed the extension to be able to use it everywhere. I think it will be useful for everyone.

In the settings you can see usage stats about how much time this extension has saved you. Also you can add exceptions for the pages, where the double click is required to select text instead of scrolling.

Please note that it's not possible to use this extension on the Chrome web store website (https://chrome.google.com/webstore/) because of restrictions to JS/CSS, which are the technologies used in this and most other extensions.

--
Permissions:
- Fast Page Scroll will add the scroll action to the double-click event via Javascript on the pages that you visit. 
- After the first installation it will open a new tab with instructions about usage, only once.
- This extension does not (and never will) inject any spyware, adware or other forms of commercial elements to your browser.
 
Changelog:
v0.12
- fix scroll to top                    

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

Όνομα Fast Page Scroll Fast Page Scroll
ID abbjgieefhoknlhpjjbbejhhjfgjeife
Επίσημο URL https://chromewebstore.google.com/detail/fast-page-scroll/abbjgieefhoknlhpjjbbejhhjfgjeife
Περιγραφή Quickly scroll to the top or bottom of any page without using the mouse wheel.
Μέγεθος Αρχείου 111 KB
Αριθμός Εγκαταστάσεων 4,359
Τρέχουσα Έκδοση 0.13
Τελευταία Ενημέρωση 2022-09-12
Ημερομηνία Δημοσίευσης 2017-10-04
Αξιολόγηση 4.16/5 Συνολικά 122 Αξιολογήσεις
Προγραμματιστής https://www.xhevi.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες de,en,fr,vi,tr,es,it,cs,el,ru,iw,hi,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.13",
    "manifest_version": 2,
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.0.2.min.js",
                "click2scroll.js"
            ]
        }
    ],
    "permissions": [],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}