TabZ

This extension is for people who have too many tabs open and need something to help them manage their browser.

TabZ란 무엇입니까?

TabZ은(는) Andrew Batbouta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is for people who have too many tabs open and need something to help them manage their browser."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is a chrome extension to help manage too many tabs being open. This will provide users a popup window with all the users tabs open in an easy to read manner. This extension will organize your tabs in the window in alphabetical order and categorized in a logical manner. You can then just click on the name of your page to change your current page to that, or even close the pages. 

This extension was also built with Matt Poegel.                    

확장 프로그램 기본 정보

이름 TabZ TabZ
ID inneckpdjbcjkpijhomijlmddbailhcd
공식 URL https://chrome.google.com/webstore/detail/tabz/inneckpdjbcjkpijhomijlmddbailhcd
설명 This extension is for people who have too many tabs open and need something to help them manage their browser.
파일 크기 428 KB
설치 횟수 32
현재 버전 2.1.1
최근 업데이트 2015-03-14
출시 날짜 2015-03-14
평점 5.00/5 총 3 개의 평점
개발자 Andrew Batbouta
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabZ",
    "manifest_version": 2,
    "version": "2.1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "stylesheets\/style.css",
                "stylesheets\/options_style.css"
            ],
            "js": [
                "javascript\/jquery-1.11.0.js",
                "javascript\/script.js",
                "javascript\/options_script.js"
            ]
        }
    ],
    "description": "This extension is for people who have too many tabs open and need something to help them manage their browser.",
    "browser_action": {
        "default_icon": "images\/icon16.png",
        "default_title": "Tabz",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "tabCapture",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+K",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    }
}