Aero Tab

Chrome extension that groups tabs together by domain

Qu'est-ce que Aero Tab ?

Aero Tab est une extension Chrome développée par recto.ralph, et sa fonction principale est "Chrome extension that groups tabs together by domain".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Aero Tab

Téléchargez les fichiers d'extension Aero Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom Aero Tab Aero Tab
ID jpmehnjljnjpkamhgbikgfcmlboholhg
URL Officiel https://chrome.google.com/webstore/detail/aero-tab/jpmehnjljnjpkamhgbikgfcmlboholhg
Description Chrome extension that groups tabs together by domain
Taille du Fichier 123 KB
Nombre d'Installations 152
Version Actuelle 1.1
Dernière Mise à Jour 2013-08-21
Date de Publication 2013-08-21
Évaluation 1.80/5 Total 5 Évaluations
Développeur recto.ralph
Type de Paiement free
Site Web de l'Extension https://github.com/ralphrecto/aero-tab
Langues Prises en Charge 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
        }
    ]
}