Group Tabs By Domain
New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.
Group Tabs By Domain란 무엇입니까?
Group Tabs By Domain은(는) grouptabsbydomain에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs."입니다.
확장 프로그램 스크린샷
Group Tabs By Domain 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Group all the tabs by domain/website url. This will help user to keep tabs organized. New tabs are automatically moved to the correct group. If no group is available then new group will be created. It groups all tabs by top level domain. group name will be GOOGLE for both below url(s). https://google.com https://docs.google.com
확장 프로그램 기본 정보
이름 | Group Tabs By Domain |
ID | icmbnkmjhdapliaologdghjfpcmcimln |
공식 URL | https://chromewebstore.google.com/detail/group-tabs-by-domain/icmbnkmjhdapliaologdghjfpcmcimln |
설명 | New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs. |
파일 크기 | 63.21 KB |
설치 횟수 | 3,084 |
현재 버전 | 0.0.0.1 |
최근 업데이트 | 2022-06-08 |
출시 날짜 | 2022-06-08 |
평점 | 4.52/5 총 31 개의 평점 |
개발자 | grouptabsbydomain |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Group Tabs By Domain", "version": "0.0.0.1", "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "tabGroups", "tabs" ], "background": { "service_worker": "service-worker.js" }, "commands": { "group-tabs-by-domain": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs." } } } |