Tab Preview Board

You can switch tabs with seeing their previews

Tab Preview Board là gì?

Tab Preview Board là một tiện ích mở rộng Chrome được phát triển bởi kent.ruffle.mgj626, và tính năng chính của nó là "You can switch tabs with seeing their previews".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Preview Board

Tải xuống các tệp mở rộng Tab Preview Board dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Preview Board Tab Preview Board
ID ennkgpoidlcphlccokdocigfibidmccj
URL Chính Thức https://chromewebstore.google.com/detail/tab-preview-board/ennkgpoidlcphlccokdocigfibidmccj
Mô tả You can switch tabs with seeing their previews
Kích Thước Tệp 25.75 KB
Số Lần Cài Đặt 1,759
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2020-07-27
Ngày Phát Hành 2020-04-16
Đánh Giá 4.00/5 Tổng số 13 Đánh Giá
Nhà Phát Triển kent.ruffle.mgj626
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://hp.vector.co.jp/authors/VA054317/index.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}