Aero Tab

Chrome extension that groups tabs together by domain

什麼是Aero Tab?

Aero Tab是由recto.ralph開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that groups tabs together by domain”。

擴展截圖

screenshot
screenshot
screenshot

下載Aero Tab擴展crx文件

下載Aero Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
        }
    ]
}