Categorize Tabs

Group Tabs by domain

Categorize Tabs란 무엇입니까?

Categorize Tabs은(는) yibingshi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Group Tabs by domain"입니다.

확장 프로그램 스크린샷

screenshot

Categorize Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension to categorize opened tabs by domain name for quick access. 

Also, you can quickly copy tab link to send to someone, pin/bookmark/close tabs, and move tabs that have same domain name to a new window.

Options for access all opened windows, search bar and drag & drop features are coming soon.

If you have any suggestions or concerns, feel free to send me an email.

* Credit to Kelig Le Luron from the Noun Project & Freepik from Flaticon for the icons                    

확장 프로그램 기본 정보

이름 Categorize Tabs Categorize Tabs
ID oefogamggbofaeonfmkigobeflejjgei
공식 URL https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei
설명 Group Tabs by domain
파일 크기 110 KB
설치 횟수 53
현재 버전 0.3
최근 업데이트 2019-01-03
출시 날짜 2019-01-03
평점 4.00/5 총 2 개의 평점
개발자 yibingshi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/NathanShi/group-tabs
도움말 페이지 URL https://github.com/NathanShi/group-tabs/pulls
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Categorize Tabs",
    "version": "0.3",
    "description": "Group Tabs by domain",
    "permissions": [
        "tabs",
        "activeTab",
        "bookmarks",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            ".\/scripts\/background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "browser_action": {
        "default_popup": ".\/public\/popup.html",
        "default_icon": {
            "16": "images\/launch_16.png",
            "32": "images\/launch_32.png",
            "48": "images\/launch_48.png",
            "128": "images\/launch_128.png"
        },
        "persistent": false
    },
    "icons": {
        "16": "images\/launch_16.png",
        "32": "images\/launch_32.png",
        "48": "images\/launch_48.png",
        "128": "images\/launch_128.png"
    }
}