Scroll-Anywhere

Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.

Scroll-Anywhere क्या है?

Scroll-Anywhere em_te द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage."।

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

screenshot
screenshot

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

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

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

                        Allows you to scroll the webpage no matter where the pointer is, as if the pointer was currently over the scrollbar.

Simply hold down the middle button anywhere on the webpage and move the mouse in any direction.

You can also go into the extension's settings page and change the direction of the scroll so that it behaves like touch devices.

As an optimization, if you hold down the middle button, move the mouse a little and then very quickly release the button, you can continue to scroll the webpage without needing to keep the mouse button pressed.

This extension is open source: https://github.com/em-te/webextension-scrollbar-anywhere

Caveat: This extension cannot work on the Extensions Gallery (this website).                    

एक्सटेंशन की मूल जानकारी

नाम Scroll-Anywhere Scroll-Anywhere
ID efdjjpechpdfmdnpamdppjahcemapgbn
आधिकारिक URL https://chromewebstore.google.com/detail/scroll-anywhere/efdjjpechpdfmdnpamdppjahcemapgbn
विवरण Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.
फ़ाइल का आकार 10.71 KB
स्थापना संख्या 21
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2022-04-12
प्रकाशन तिथि 2022-03-30
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर em_te
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/em-te/webextension-scrollbar-anywhere
गोपनीयता नीति पृष्ठ URL https://em-te.github.io/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "author": "Terry",
    "version": "0.1.3",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.htm"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}