Tab Overflow

A tool to prevent you from opening too many tabs.

Tab Overflow là gì?

Tab Overflow là một tiện ích mở rộng Chrome được phát triển bởi lexmart, và tính năng chính của nó là "A tool to prevent you from opening too many tabs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Overflow

Tải xuống các tệp mở rộng Tab Overflow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Overflow Tab Overflow
ID bkjofbabnobnejgceoncjoimceohlogl
URL Chính Thức https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl
Mô tả A tool to prevent you from opening too many tabs.
Kích Thước Tệp 21.73 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2015-10-22
Ngày Phát Hành 2015-10-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lexmart
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}