Tab Group Helper
Allow quick grouping of tabs by their attributes like title or URL
Tab Group Helper란 무엇입니까?
Tab Group Helper은(는) Mike DiDomizio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow quick grouping of tabs by their attributes like title or URL"입니다.
확장 프로그램 스크린샷
Tab Group Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The main audience being those that have a lot of browser tabs open like office workers or software developers, where tabs managing tabs might become unorganized. You could group tabs by social media, work, JIRA, Git, etc. However you like! Other features ============ - Use regular expressions to be more creative/advanced with your grouping rules - Automatically group tabs on creation and/or on when tabs change web page - Import/export your settings to share with co-workers or friends - Sort your groups with a click of a button - Keyboard shortcuts to run without opening the extension Note: Although upon install the extension will say that it is asking for browser history, it is part of the tabs permission as you can read here => https://www.quora.com/Why-do-so-many-Chrome-extensions-ask-for-access-to-my-browsing-history . This extension does not read your browser history.
확장 프로그램 기본 정보
이름 | Tab Group Helper |
ID | llhkcebnebfiaamifhbpehjompplpnae |
공식 URL | https://chromewebstore.google.com/detail/tab-group-helper/llhkcebnebfiaamifhbpehjompplpnae |
설명 | Allow quick grouping of tabs by their attributes like title or URL |
파일 크기 | 125 KB |
설치 횟수 | 102 |
현재 버전 | 1.9.1 |
최근 업데이트 | 2022-04-08 |
출시 날짜 | 2021-04-13 |
개발자 | Mike DiDomizio |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mikedidomizio/tab-group-helper |
도움말 페이지 URL | https://github.com/mikedidomizio/tab-group-helper |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Allow quick grouping of tabs by their attributes like title or URL", "version": "1.9.1", "manifest_version": 3, "name": "Tab Group Helper", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-128.png" }, "permissions": [ "storage", "tabs", "tabGroups" ], "web_accessible_resources": [ { "resources": [ "icon-128.png" ], "matches": [] } ], "minimum_chrome_version": "89", "offline_enabled": true, "commands": { "run_grouping": { "suggested_key": { "default": "Ctrl+Shift+G", "mac": "Command+Shift+G" }, "description": "Groups tabs by rules" } } } |