Vertical Tabs Popup

Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…

Vertical Tabs Popupคืออะไร?

Vertical Tabs Popup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย frankmannen และคุณลักษณะหลักของมันคือ "Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vertical Tabs Popup

ดาวน์โหลดไฟล์ส่วนขยาย Vertical Tabs Popup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can preferably be place to the side of the main google chrome window.

Similar to Vertical Tabs for Firefox.

The position and size of the popup with tabs should be remembered after you set it the first time. 

Revisions:
2014-05-13 version 0.14
- Fixed bug for html-characters in tab title.
2013-07-26 version 0.12
- Removed time-based auto-refresh on the tabs since chrome updated it's API to support update event when favicon has been loaded
- Added support for multiple windows. The tabs popup will use the currently active window.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Vertical Tabs Popup Vertical Tabs Popup
ID cajhlgkpfinedhdkhecjkkcjgdjnkijf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vertical-tabs-popup/cajhlgkpfinedhdkhecjkkcjgdjnkijf
คำอธิบาย Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…
ขนาดไฟล์ 87.65 KB
จำนวนการติดตั้ง 205
เวอร์ชันปัจจุบัน 0.14
อัปเดตครั้งล่าสุด 2014-05-13
วันที่เผยแพร่ 2014-05-13
คะแนน 1.50/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา frankmannen
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vertical Tabs Popup",
    "description": "",
    "version": "0.14",
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "browser_action": {
        "default_popup": "browser_action.html"
    },
    "permissions": [
        "tabs",
        "bookmarks",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            }
        },
        "next_tab": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Tab"
            },
            "description": "next_tab"
        },
        "previous_tab": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Shift+Tab"
            },
            "description": "previous_tab"
        },
        "previous_tab_jump": {
            "description": "previous_tab_jump"
        },
        "next_tab_jump": {
            "description": "next_tab_jump"
        }
    }
}