Tabbr: Tab Manager

Search your tabs.

Tabbr: Tab Manager란 무엇입니까?

Tabbr: Tab Manager은(는) pterhx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search your tabs."입니다.

확장 프로그램 스크린샷

screenshot

Tabbr: Tab Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Move from tab to tab faster by searching for your tab.

- Start a search with Ctrl+T (OSX) or Alt+T (Windows/Linux/ChromeOS).

- Search for a tab based on tab title, content, and url. If you don't remember what the title of the tab was, but you can still search for it by keywords in the content of the tab.

- Jump to last tab by immediately hitting enter after opening tabbr.

- Preview tabs. A snapshot of the tab is displayed on the side.

tabbr is currently in beta.                    

확장 프로그램 기본 정보

이름 Tabbr: Tab Manager Tabbr: Tab Manager
ID pnlmkddpdkjapnghefahkniilfnodcol
공식 URL https://chromewebstore.google.com/detail/tabbr-tab-manager/pnlmkddpdkjapnghefahkniilfnodcol
설명 Search your tabs.
파일 크기 81.61 KB
설치 횟수 511
현재 버전 0.0.2
최근 업데이트 2015-11-09
출시 날짜 2015-11-09
평점 4.04/5 총 51 개의 평점
개발자 pterhx
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabbr: Tab Manager",
    "icons": {
        "16": "favicon.png",
        "128": "icon128.png"
    },
    "description": "Search your tabs.",
    "version": "0.0.2",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "storage",
        "unlimitedStorage",
        "history"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "favicon.png"
    },
    "background": {
        "scripts": [
            "js\/underscore.js",
            "js\/lunr.min.js",
            "js\/repo.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "MacCtrl+T"
            }
        }
    }
}