Aero Tab

Chrome extension that groups tabs together by domain

Aero Tab là gì?

Aero Tab là một tiện ích mở rộng Chrome được phát triển bởi recto.ralph, và tính năng chính của nó là "Chrome extension that groups tabs together by domain".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Aero Tab

Tải xuống các tệp mở rộng Aero Tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Aero Tab Aero Tab
ID jpmehnjljnjpkamhgbikgfcmlboholhg
URL Chính Thức https://chrome.google.com/webstore/detail/aero-tab/jpmehnjljnjpkamhgbikgfcmlboholhg
Mô tả Chrome extension that groups tabs together by domain
Kích Thước Tệp 123 KB
Số Lần Cài Đặt 152
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2013-08-21
Ngày Phát Hành 2013-08-21
Đánh Giá 1.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển recto.ralph
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ralphrecto/aero-tab
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}