Disable Scrolling

This extension allows you to disable scrolling on your page.

Disable Scrolling क्या है?

Disable Scrolling Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to disable scrolling on your page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Disable Scrolling एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}