Tab Wheel Scroll

Scroll tabs with alt + mouse wheel OR right click + mouse wheel.

Tab Wheel Scroll क्या है?

Tab Wheel Scroll https://www.jonathan-plantey.fr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scroll tabs with alt + mouse wheel OR right click + mouse wheel."।

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

screenshot

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

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

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

                        Usage to scroll through your open tabs
----------------------------------------

Way 1 : Press ALT Key + mouse wheel
Way 2 : Press mouse right button + mouse wheel

When you scroll your mouse has to be anywhere over the page but not over the tabs.

Also, if you once disabled the extension and re-enable it, all the tabs has to be reloaded to register the event (restart chrome is fine).

Where it works
---------------
It's working on every pages with real content loaded EXCEPT internal "chrome://" pages or "https://chrome.google.com/*" pages.

It's open source ! 
----------------------------
Feel free to contribute
https://github.com/johndodev/TabWheelScroll                    

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

नाम Tab Wheel Scroll Tab Wheel Scroll
ID aknfcgiicpmnfhncpljcadokcghjblal
आधिकारिक URL https://chromewebstore.google.com/detail/tab-wheel-scroll/aknfcgiicpmnfhncpljcadokcghjblal
विवरण Scroll tabs with alt + mouse wheel OR right click + mouse wheel.
फ़ाइल का आकार 30.25 KB
स्थापना संख्या 8,543
वर्तमान संस्करण 2.1
अंतिम अपडेट 2023-02-09
प्रकाशन तिथि 2016-03-07
रेटिंग 2.54/5 कुल 97 रेटिंग्स
डेवलपर https://www.jonathan-plantey.fr
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Wheel Scroll",
    "version": "2.1",
    "description": "Scroll tabs with alt + mouse wheel OR right click + mouse wheel.",
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "author": "Jonathan Plantey",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_origin_as_fallback": true
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "scripting",
        "storage"
    ]
}