Tab Overflow

A tool to prevent you from opening too many tabs.

Co to jest Tab Overflow?

Tab Overflow to rozszerzenie Chrome opracowane przez lexmart, a jego główną funkcją jest „A tool to prevent you from opening too many tabs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Tab Overflow

Pobierz pliki rozszerzeń Tab Overflow 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

                        Tab Overflow is a tool to prevent you from opening too many tabs in one window. It will forcibly close any tab you try to open beyond the allowed number (which you can specify). This is useful because it prevents you from overflowing your windows with too useless tabs, and trains you to use tabs as a limited resource.

Github Page: https://github.com/lexmart/taboverflow

Developed by Alexander Martin (www.github.com/lexmart)
Graphics designed by Tigran Kasparian                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Overflow Tab Overflow
ID bkjofbabnobnejgceoncjoimceohlogl
Oficjalny URL https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl
Opis A tool to prevent you from opening too many tabs.
Rozmiar pliku 21.73 KB
Liczba instalacji 16
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2015-10-22
Data Publikacji 2015-10-22
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper lexmart
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Overflow",
    "description": "A tool to prevent you from opening too many tabs.",
    "version": "0.1",
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "tab-overflow.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "browser_action": {
        "default_title": "Tab Overflow",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}