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