Tab Preview Board

You can switch tabs with seeing their previews

Tab Preview Board क्या है?

Tab Preview Board kent.ruffle.mgj626 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "You can switch tabs with seeing their previews"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab Preview Board एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}