Tabbr: Tab Manager

Search your tabs.

Tabbr: Tab Managerとは何ですか?

Tabbr: Tab Managerはpterhxによって開発されたChromeの拡張機能で、その主な機能は「Search your tabs.」です。

拡張機能のスクリーンショット

screenshot

Tabbr: Tab Manager拡張機能のCRXファイルをダウンロード

Tabbr: Tab Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
            }
        }
    }
}