Manage Tabs by Domain

Close and gather same-domain tabs.

Manage Tabs by Domain란 무엇입니까?

Manage Tabs by Domain은(는) Nicole White에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Close and gather same-domain tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Manage Tabs by Domain 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All.

You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/                    

확장 프로그램 기본 정보

이름 Manage Tabs by Domain Manage Tabs by Domain
ID jgjhgpeaejjahlbcgijdibooomicdcfi
공식 URL https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi
설명 Close and gather same-domain tabs.
파일 크기 1.08 MB
설치 횟수 362
현재 버전 0.0.2
최근 업데이트 2017-06-19
출시 날짜 2017-06-18
평점 4.11/5 총 9 개의 평점
개발자 Nicole White
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/nicolewhite/same-domain-tabs/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Manage Tabs by Domain",
    "short_name": "Manage Tabs",
    "description": "Close and gather same-domain tabs.",
    "version": "0.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "commands"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "gather-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Gather same-domain tabs around active tab."
        },
        "close-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Close same-domain tabs as active tab."
        },
        "gather-tabs-all": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Gather all same-domain tabs."
        }
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}