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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}