Disable Scrolling

This extension allows you to disable scrolling on your page.

Vad är Disable Scrolling?

Disable Scrolling är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension allows you to disable scrolling on your page.".

Tilläggsskärmbilder

screenshot

Ladda ner Disable Scrolling-förlängningens CRX-fil

Ladda ner Disable Scrolling-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Officiell webbadress https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Beskrivning This extension allows you to disable scrolling on your page.
Filstorlek 190 KB
Antal Installationer 1,077
Aktuell Version 1.0.0
Senast Uppdaterad 2020-06-13
Publiceringsdatum 2020-06-13
Betyg 3.20/5 Totalt 10 Betyg
Utvecklare Unknown
Betalningssätt free
Tilläggswebbplats https://github.com/ysun62/Disable-Scrolling-Extension
Stödda Språk 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"
    ]
}