Scrollbar of Contents

Creates clickable heading markers next to the scrollbar.

Τι είναι το Scrollbar of Contents;

Το Scrollbar of Contents είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Martin Lijanto, και η κύρια λειτουργία του είναι "Creates clickable heading markers next to the scrollbar.".

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

screenshot
screenshot

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

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

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

                        This extension creates clickable markers for all the headings on a webpage and places them proportionately next to the scrollbar.

The markers enable you to jump between different sections of the page and help to quickly find what you are looking for. They are especially useful when navigating long webpages.

Featured in CNET, Lifehacker and Mashable.


How to use:

• After a page is loaded, click on the extension icon on the toolbar to display the heading markers.

• Click on a marker to scroll to the corresponding section.

• You can minimize, hide, or show the markers using these keyboard shortcuts:
  ⁃ show/hide ( Shift + Alt + v )
  ⁃ minimize/maximize ( Shift + Alt + b )

• You can customize the behavior of this extension on the options page.


View the source code, contribute, report issues, or request new features here:
github.com/mlijanto/scrollbar-of-contents

Thanks for your comments and suggestions, keep them coming!                    

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

Όνομα Scrollbar of Contents Scrollbar of Contents
ID cfmkncejaemmcobmaabfigljmnkeecdm
Επίσημο URL https://chromewebstore.google.com/detail/scrollbar-of-contents/cfmkncejaemmcobmaabfigljmnkeecdm
Περιγραφή Creates clickable heading markers next to the scrollbar.
Μέγεθος Αρχείου 37.38 KB
Αριθμός Εγκαταστάσεων 8,136
Τρέχουσα Έκδοση 0.3.2
Τελευταία Ενημέρωση 2021-04-18
Ημερομηνία Δημοσίευσης 2019-10-07
Αξιολόγηση 4.49/5 Συνολικά 78 Αξιολογήσεις
Προγραμματιστής Martin Lijanto
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/mlijanto/scrollbar-of-contents
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scrollbar of Contents",
    "version": "0.3.2",
    "description": "Creates clickable heading markers next to the scrollbar.",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon_browser.png",
        "default_title": "Scrollbar of Contents"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/soc.css"
            ],
            "js": [
                "js\/soc.js",
                "js\/filterHeading.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "incognito": "spanning"
}