Fast Tab Switcher

Easily find and close tabs!

什麼是Fast Tab Switcher?

Fast Tab Switcher是由https://ronsatech.com開發的Chrome擴展程式,該擴展的主要功能是“Easily find and close tabs!”。

擴展截圖

screenshot
screenshot
screenshot

下載Fast Tab Switcher擴展crx文件

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

擴展使用說明

                        Many of us tend to open so many Chrome Tab then get lost somewhere when we want to get back to previously opened tab.

We created this Extension out of genuine concern from many user and web developers.

Now you simply press Alt+T (Cmd+E on Mac) to launch Tab Switcher and quickly search for desired tab and press Enter. You can also use Up/Down arrow keys to navigate through tabs.

If there is a clash on keyboard shortcut then you can assign any key of your interest by navigating to chrome://extensions/shortcuts 

This is initial version, we have long list of improvements planned for this extension.

If you any suggestion or idea to make it more useful for you then please leave a Support Message or write us Email at [email protected]                    

擴展基本資訊

名稱 Fast Tab Switcher Fast Tab Switcher
ID idkpmchlhfanmhckfmfpkjnnpifolcpk
官方網址 https://chromewebstore.google.com/detail/fast-tab-switcher/idkpmchlhfanmhckfmfpkjnnpifolcpk
簡介 Easily find and close tabs!
檔案大小 17.06 KB
安裝次數 40
目前版本 0.0.1
更新時間 2020-01-07
上架時間 2020-01-07
評分 5.00/5 共 1 次評分
開發者 https://ronsatech.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fast Tab Switcher",
    "version": "0.0.1",
    "description": "Easily find and close tabs!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/tab_search_16.png",
            "32": "images\/tab_search_32.png",
            "48": "images\/tab_search_48.png",
            "128": "images\/tab_search_128.png"
        }
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Command+E"
            }
        }
    },
    "icons": {
        "16": "images\/tab_search_16.png",
        "32": "images\/tab_search_32.png",
        "48": "images\/tab_search_48.png",
        "128": "images\/tab_search_128.png"
    }
}