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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}