Tabbo

Tab Management Hotkeys

Tabbo란 무엇입니까?

Tabbo은(는) dqgorelick에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab Management Hotkeys"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Tabbo is a hotkeys management tool built specially for Google Chrome which allows you to:
- Move tabs between windows
- Join all tabs into one window
- Pop tabs off of the window

The app features hotkeys for:
- moving tabs left and right
- popping tabs off of the current window
- sending tabs between windows (with custom UI)

You can modify the hotkeys by navigating to chrome://settings/extensions/configureCommands in your chrome window.

We hope you all enjoy,

-Tabbo team

Disclaimer – Tabbo has access to the "" permission which gives it access to "All of your data". This allows the extension to take advantage of `captureVisibleTab` which allows you to see screenshots of your open windows (reference - https://developer.chrome.com/extensions/tabs). No data is being had. 

Update Log

0.9.7: 
Bug fix: regression bug for pinned tabs fixed 

0.9.6: 
Bug fix: bonus button is now fixed (as well as join). Also popping off pinned tabs stay pinned!

0.9.5:
Bug fix: popping off tab on single window no longer causes a glitch in the matrix

0.9.4:
We heard all of your feedback and now we are happy to announce that Tabbo supports pinned tabs!                    

확장 프로그램 기본 정보

이름 Tabbo Tabbo
ID hedbkonckghacebehjebpfknhdbobiko
공식 URL https://chromewebstore.google.com/detail/tabbo/hedbkonckghacebehjebpfknhdbobiko
설명 Tab Management Hotkeys
파일 크기 1.12 MB
설치 횟수 348
현재 버전 0.9.7
최근 업데이트 2017-10-23
출시 날짜 2017-10-23
평점 4.64/5 총 11 개의 평점
개발자 dqgorelick
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/tabbo128.png",
        "default_popup": "popup.html"
    },
    "name": "Tabbo",
    "description": "Tab Management Hotkeys",
    "short_name": "Tabbo \u2013 Tab Management Hotkeys",
    "version": "0.9.7",
    "icons": {
        "16": "images\/tabbo16.png",
        "48": "images\/tabbo48.png",
        "128": "images\/tabbo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/utils.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/utils.js",
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "chrome:\/\/favicon\/",
        ""
    ],
    "commands": {
        "pop_off": {
            "suggested_key": {
                "default": "Ctrl+P"
            },
            "description": "Keybind to pop off the tab",
            "global": false
        },
        "move_right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period"
            },
            "description": "move current tab to the right",
            "global": false
        },
        "move_left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma"
            },
            "description": "move current tab to the left",
            "global": false
        },
        "send_tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "move current tab another window",
            "global": false
        }
    }
}