Tabco - Search between open tabs

Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.

Co to jest Tabco - Search between open tabs?

Tabco - Search between open tabs to rozszerzenie Chrome opracowane przez ChromeStar - Tab Guru, a jego główną funkcją jest „Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tabco - Search between open tabs

Pobierz pliki rozszerzeń Tabco - Search between open tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        How many tabs on your Chrome is open right now? 

Mac: ⌘ + Shift + L Windows: Mac: Ctrl+Shift+L

Tabco is valuable for those who love multitasking with a lot of open tab in any particular time, This Simple chrome tool will help you to search between tabs and switch. 

Features
Use Hot key to search between tabs
Search with Website name                    

Podstawowe informacje o rozszerzeniu

Nazwa Tabco - Search between open tabs Tabco - Search between open tabs
ID gdlfpemlflmabfaaldihflcbokikbcgk
Oficjalny URL https://chromewebstore.google.com/detail/tabco-search-between-open/gdlfpemlflmabfaaldihflcbokikbcgk
Opis Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.
Rozmiar pliku 161 KB
Liczba instalacji 40
Aktualna Wersja 0.7.4
Ostatnia Aktualizacja 2019-07-24
Data Publikacji 2019-07-19
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper ChromeStar - Tab Guru
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabco - Search between open tabs",
    "description": "Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.",
    "version": "0.7.4",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "browser_action": {
        "default_icon": "browser_action_icon.png",
        "default_title": "Tabco - Comand+shift+l or ctrl+shift+l"
    },
    "icons": {
        "48": "browser_action_icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "showTabSwitcher": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Toggle feature"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "assets\/js\/sanitize-html.js",
                "assets\/js\/jquery.js",
                "assets\/js\/keymaster.js",
                "contentScript.js"
            ],
            "css": [
                "assets\/css\/tab-switcher.css"
            ]
        }
    ],
    "manifest_version": 2
}