Tab Counter

Keeps count of your open tabs and windows

Tab Counter란 무엇입니까?

Tab Counter은(는) Travis Gayle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keeps count of your open tabs and windows"입니다.

확장 프로그램 스크린샷

screenshot

Tab Counter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Counts how many tabs you currently have open, and allows you to search through your tabs or filter the list based on different things.

Features:
- Group tabs by window, or by domain
- Search tabs by page URL or title
- Sort tabs alphabetically or by how many tabs are open in a specific domain
- Filter tabs based on the current window, find duplicate tabs, or only tabs that are currently playing sound.
- Group tabs using custom rules and names so you can always find them

This is an open-source extension, feel free to contribute yourself, or have a look. No user data is collected: 
https://github.com/tgayle/tab-counter

Changelog:

2.0.0:
- Total UI overhaul!
- Rules! Define custom groups and names for websites for organization and better tab deduplication
- The "badge" showing the current number of open tabs transitions between green and red a bit more naturally
- If a domain/group only has a single tab in it, the single tab is shown instead of having to expand the group to see it.
- New "Dedupe Tabs" button: automatically close all but the first tab when you have several duplicate tabs open
- When viewing duplicate tabs, always group them by domain regardless of current settings

1.0.1:
- Fix All/Normal/Incognito filter buttons not updating the tab list                    

확장 프로그램 기본 정보

이름 Tab Counter Tab Counter
ID mnkmfefaigfcieehggcbfabgkjijigbc
공식 URL https://chromewebstore.google.com/detail/tab-counter/mnkmfefaigfcieehggcbfabgkjijigbc
설명 Keeps count of your open tabs and windows
파일 크기 560 KB
설치 횟수 287
현재 버전 792c71a
최근 업데이트 2023-02-01
출시 날짜 2022-07-03
평점 3.00/5 총 1 개의 평점
개발자 Travis Gayle
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tgayle/tab-counter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Counter",
    "description": "Keeps count of your open tabs and windows",
    "manifest_version": 3,
    "version_name": "792c71a",
    "version": "2.0.0",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+T"
            }
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}