Tab Preview Board

You can switch tabs with seeing their previews

什麼是Tab Preview Board?

Tab Preview Board是由kent.ruffle.mgj626開發的Chrome擴展程式,該擴展的主要功能是“You can switch tabs with seeing their previews”。

擴展截圖

screenshot
screenshot

下載Tab Preview Board擴展crx文件

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

擴展使用說明

                        Tab Preview Board is a Chrome extension to switch tab. You can switch tabs with seeing their previews.

The tabs will be shown in 3 columns in the popup. If you click the last tab with "+", the new tab will be opened.


Update History
v.1.4: Changed extension name, Added some colors, and other minor fixes
v.1.3: Supported "Columns" & "Background Color" Settings, Added "Option" button on popup, and others
v1.2: Supported to close tabs, Supported setting Image Quality of thumbnails, and others
v1.1.1: Supported selecting a tab by arrow keys                    

擴展基本資訊

名稱 Tab Preview Board Tab Preview Board
ID ennkgpoidlcphlccokdocigfibidmccj
官方網址 https://chromewebstore.google.com/detail/tab-preview-board/ennkgpoidlcphlccokdocigfibidmccj
簡介 You can switch tabs with seeing their previews
檔案大小 25.75 KB
安裝次數 1,759
目前版本 1.4
更新時間 2020-07-27
上架時間 2020-04-16
評分 4.00/5 共 13 次評分
開發者 kent.ruffle.mgj626
電子郵箱 [email protected]
付費類型 free
擴展官網 http://hp.vector.co.jp/authors/VA054317/index.html
支援的語言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "default_locale": "en",
    "version": "1.4",
    "description": "__MSG_appDescription__",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "windows",
        "tabs",
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "icons": {
        "16": "tps_16.png",
        "32": "tps_32.png",
        "64": "tps_64.png",
        "96": "tps_96.png",
        "128": "tps_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "tps_16.png",
        "default_title": "Tab Preview Board",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "whitepaper.png",
        "close.png"
    ]
}