Vertabs

Vertical tabs.

Vertabsคืออะไร?

Vertabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anton Niklasson และคุณลักษณะหลักของมันคือ "Vertical tabs."

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

screenshot
screenshot
screenshot

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

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

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

                        Vertabs is a Chrome Extension made for tab junkies. Vertabs gives you a scrollable vertical list of all your open tabs. Use Chrome in fullscreen, and view your tabs and their titles in Vertabs!

Please report any bugs or issues here: github.com/AntonNiklasson/Vertabs/issues

Contact me at: http://www.twitter.com/AntonNiklasson                    

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

ชื่อ Vertabs Vertabs
ID ohogedbookenkamipehdjkeilonagpcp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vertabs/ohogedbookenkamipehdjkeilonagpcp
คำอธิบาย Vertical tabs.
ขนาดไฟล์ 428 KB
จำนวนการติดตั้ง 378
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2013-03-17
วันที่เผยแพร่ 2013-03-17
คะแนน 3.03/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา Anton Niklasson
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ http://www.twitter.com/AntonNiklasson
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vertabs",
    "version": "1.3.1",
    "description": "Vertical tabs.",
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "imgs\/icon_inactive.png",
        "default_title": "Toggle Vertabs"
    },
    "web_accessible_resources": [
        "imgs\/close.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "vertabs-injector.js"
            ],
            "css": [
                "vertabs.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "",
        "storage",
        "chrome:\/\/favicon\/"
    ],
    "manifest_version": 2
}