Wheeltab

Switch tabs using your mouse wheel.

什麼是Wheeltab?

Wheeltab是由Mat開發的Chrome擴展程式,該擴展的主要功能是“Switch tabs using your mouse wheel.”。

擴展截圖

screenshot

下載Wheeltab擴展crx文件

下載Wheeltab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Wheeltab allows you to navigate through your open tabs using your mouse wheel.

Press and hold the left button of your mouse, without moving your mouse. Then, use your mouse wheel to scroll through the list of open tabs in the menu that will appear. Release the left button to jump to the highlighted tab. Use the "Escape" key to close the menu and stay on the current tab.                    

擴展基本資訊

名稱 Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
官方網址 https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
簡介 Switch tabs using your mouse wheel.
檔案大小 11.09 KB
安裝次數 253
目前版本 0.0.4
更新時間 2022-04-18
上架時間 2016-05-27
評分 1.75/5 共 8 次評分
開發者 Mat
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/matco/wheeltab
說明頁面URL https://github.com/matco/wheeltab
支援的語言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wheeltab",
    "version": "0.0.4",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "incognito": "spanning",
    "author": "Matthieu Corageoud",
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js"
    }
}