Active tabs

Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.

Active tabs là gì?

Active tabs là một tiện ích mở rộng Chrome được phát triển bởi https://shaunsational.github.io, và tính năng chính của nó là "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.".

Ả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 Active tabs

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

                        Shows a count of total active tabs across all windows on the browser icon.  When clicked a searchable list of all the tabs appears broken down by window (each window is collapsible).  Clicking any tab will immediately focus that tab, even if it is minimized.  You can also close individual tabs or entire windows from the list.

You have to "Allow in incognito" on the manage extensions page to show incognito tabs, it will not show them by default.

Updates - 
1.2 - now adds a background to tabs playing audio, also searchable by using the keyword "audio"
1.3 - added keyboard shortcuts (open help by hitting ?), prefixed keywords with _ to help separate further.

@shaunsational                    

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

Tên Active tabs Active tabs
ID pbihheplocihoglaokfdcjadbjlhijgb
URL Chính Thức https://chromewebstore.google.com/detail/active-tabs/pbihheplocihoglaokfdcjadbjlhijgb
Mô tả Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.
Kích Thước Tệp 50.87 KB
Số Lần Cài Đặt 510
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2018-11-06
Ngày Phát Hành 2018-11-06
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://shaunsational.github.io
Loại Thanh Toán free
Trang Web Mở Rộng https://shaunsational.github.io/extensions#active-tabs
URL Trang Trợ Giúp https://github.com/shaunsational/chrome-ext-ActiveTabs/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Active tabs",
    "description": "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.",
    "version": "1.3.1",
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon.png",
            "48": "assets\/icon_48.png"
        },
        "default_title": "Active tabs",
        "default_popup": "popup.htm"
    },
    "permissions": [
        "*:\/\/*\/",
        "chrome:\/\/favicon\/",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}