Tabs count

Counts the number of open browser tabs

Tabs count là gì?

Tabs count là một tiện ích mở rộng Chrome được phát triển bởi Kanban Labs, và tính năng chính của nó là "Counts the number of open browser 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 Tabs count

Tải xuống các tệp mở rộng Tabs count 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

                        A very simple extension that gives you the number of currently opened tabs and windows.
Check the source code yourself! https://github.com/kanban-labs/tabs-count                    

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

Tên Tabs count Tabs count
ID iaejhlgcnijhbdilicmoinmiofldhpke
URL Chính Thức https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke
Mô tả Counts the number of open browser tabs
Kích Thước Tệp 6.83 KB
Số Lần Cài Đặt 168
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-09-15
Ngày Phát Hành 2022-09-14
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Kanban Labs
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://kanban.ee
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs count",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Counts the number of open browser tabs",
    "action": {
        "default_title": "Tab count",
        "default_icon": "icons\/icon-48x48.png"
    },
    "permissions": [
        "notifications"
    ],
    "icons": {
        "48": "icons\/icon-48x48.png",
        "144": "icons\/icon-144x144.png"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self';"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}