Tab Number

Number tabs when the ctrl/alt/cmd button is held.

Tab Number란 무엇입니까?

Tab Number은(는) stugrammer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Number tabs when the ctrl/alt/cmd button is held."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A tool for those who uses ctrl/alt/cmd+number to jump between tabs. Display page number when you hold ctrl/alt/cmd key.

Version 0.2.0.1:
* Now the extension also works with pages having no favicon.
* Fixed a bug that the number is not shown on some pages, such as google group.

Version 0.1.0.2:
* Show tab numbers when alt is held in non-Mac system.
* Fixed a bug that tab numbers stay if page is closed with ctrl/cmd+w.
* Fixed a bug that tab numbers stay if control is switched to another window when ctrl/alt/cmd is held.                    

확장 프로그램 기본 정보

이름 Tab Number Tab Number
ID fijaenjgknobfdombbdchngpamggajpm
공식 URL https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm
설명 Number tabs when the ctrl/alt/cmd button is held.
파일 크기 27.02 KB
설치 횟수 1,847
현재 버전 0.2.0.1
최근 업데이트 2013-12-03
출시 날짜 2013-12-03
평점 3.36/5 총 55 개의 평점
개발자 stugrammer
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Number",
    "description": "Number tabs when the ctrl\/alt\/cmd button is held.",
    "version": "0.2.0.1",
    "icons": {
        "48": "icon-48.gif",
        "128": "icon-128.gif"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "chrome:\/\/favicon\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "num_tab.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "favicon\/favicon-1.gif",
        "favicon\/favicon-2.gif",
        "favicon\/favicon-3.gif",
        "favicon\/favicon-4.gif",
        "favicon\/favicon-5.gif",
        "favicon\/favicon-6.gif",
        "favicon\/favicon-7.gif",
        "favicon\/favicon-8.gif",
        "favicon\/favicon-9.gif"
    ]
}