Disable Scrolling

This extension allows you to disable scrolling on your page.

Τι είναι το Disable Scrolling;

Το Disable Scrolling είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This extension allows you to disable scrolling on your page.".

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

screenshot

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

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

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

                        Ever tried searching for a word in the current viewport, but the Find Bar takes you to "random" sections of the page, making you lose track of the section you were just reading?

Try using this chrome extension to temporarily disable scrolling of the current page before you use Find, so that you can stay where you are while Find searches all the instances for you.

* Note: please refresh any pre-existing tabs after installation.                    

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

Όνομα Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Επίσημο URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Περιγραφή This extension allows you to disable scrolling on your page.
Μέγεθος Αρχείου 190 KB
Αριθμός Εγκαταστάσεων 1,077
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2020-06-13
Ημερομηνία Δημοσίευσης 2020-06-13
Αξιολόγηση 3.20/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ysun62/Disable-Scrolling-Extension
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Scrolling",
    "description": "This extension allows you to disable scrolling on your page.",
    "version": "1.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}