Aero Tab

Chrome extension that groups tabs together by domain

Co je Aero Tab?

Aero Tab je rozšíření Chrome vyvinuté recto.ralph, a jeho hlavní funkcí je „Chrome extension that groups tabs together by domain“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Aero Tab

Stáhněte si soubory rozšíření Aero Tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        TO USE: Hit Ctrl+Shift+Q (or Command+Shift+Q for Mac). You can change this keybind in the Chrome Extensions Page, all the way down the bottom where it says "Keyboard Shortcuts".

This extension groups your tabs together by domain so that you can still see their titles even if you have 50 tabs or reddit or Hacker News open. Inspired by the Window 7 Aero taskbar (hence the name).                    

Základní Informace o Rozšíření

Název Aero Tab Aero Tab
ID jpmehnjljnjpkamhgbikgfcmlboholhg
Oficiální URL https://chrome.google.com/webstore/detail/aero-tab/jpmehnjljnjpkamhgbikgfcmlboholhg
Popis Chrome extension that groups tabs together by domain
Velikost souboru 123 KB
Počet instalací 152
Aktuální Verze 1.1
Poslední Aktualizace 2013-08-21
Datum Vydání 2013-08-21
Hodnocení 1.80/5 Celkem 5 Hodnocení
Vývojář recto.ralph
Typ Platby free
Webové stránky Rozšíření https://github.com/ralphrecto/aero-tab
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Aero Tab",
    "description": "Chrome extension that groups tabs together by domain",
    "version": "1.1",
    "icons": {
        "16": "icons\/logo16.png",
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "commands": {
        "toggle_dialog": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Command+Shift+Q"
            },
            "description": "Toggles the tab grouping dialog"
        }
    },
    "background": {
        "scripts": [
            "javascripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "javascripts\/lib\/jquery-1.10.2.min.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}