Aero Tab

Chrome extension that groups tabs together by domain

Aero Tabคืออะไร?

Aero Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย recto.ralph และคุณลักษณะหลักของมันคือ "Chrome extension that groups tabs together by domain"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Aero Tab

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
        }
    ]
}