Vertabs

Vertical tabs.

Vertabs란 무엇입니까?

Vertabs은(는) Anton Niklasson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vertical tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Vertabs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}