Tab Overflow

A tool to prevent you from opening too many tabs.

Tab Overflowとは何ですか?

Tab Overflowはlexmartによって開発されたChromeの拡張機能で、その主な機能は「A tool to prevent you from opening too many tabs.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Tab Overflow is a tool to prevent you from opening too many tabs in one window. It will forcibly close any tab you try to open beyond the allowed number (which you can specify). This is useful because it prevents you from overflowing your windows with too useless tabs, and trains you to use tabs as a limited resource.

Github Page: https://github.com/lexmart/taboverflow

Developed by Alexander Martin (www.github.com/lexmart)
Graphics designed by Tigran Kasparian                    

拡張機能の基本情報

名前 Tab Overflow Tab Overflow
ID bkjofbabnobnejgceoncjoimceohlogl
公式URL https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl
説明 A tool to prevent you from opening too many tabs.
ファイルサイズ 21.73 KB
インストール数 16
現在のバージョン 0.1
最終更新日 2015-10-22
公開日 2015-10-22
評価 5.00/5 合計 2 レビュー
開発者 lexmart
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Overflow",
    "description": "A tool to prevent you from opening too many tabs.",
    "version": "0.1",
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "tab-overflow.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "browser_action": {
        "default_title": "Tab Overflow",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}