Aero Tab

Chrome extension that groups tabs together by domain

Aero Tab क्या है?

Aero Tab recto.ralph द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that groups tabs together by domain"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Aero Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Aero Tab Aero Tab
ID jpmehnjljnjpkamhgbikgfcmlboholhg
आधिकारिक URL https://chrome.google.com/webstore/detail/aero-tab/jpmehnjljnjpkamhgbikgfcmlboholhg
विवरण Chrome extension that groups tabs together by domain
फ़ाइल का आकार 123 KB
स्थापना संख्या 152
वर्तमान संस्करण 1.1
अंतिम अपडेट 2013-08-21
प्रकाशन तिथि 2013-08-21
रेटिंग 1.80/5 कुल 5 रेटिंग्स
डेवलपर recto.ralph
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ralphrecto/aero-tab
समर्थित भाषाएँ 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
        }
    ]
}