Tab Grouper
Automatically group tabs based on URL matches
Tab Grouper란 무엇입니까?
Tab Grouper은(는) Mark Harrison에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically group tabs based on URL matches"입니다.
확장 프로그램 스크린샷
Tab Grouper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tab grouper is a chrome extension that allows you to automatically group all tabs that match a given URL pattern. You create rules for each website saying which URL pattern to match, the name of the tab group, and optionally a color, and the extension will add matching websites to the appropriate tab groups as you browse to them. For example, you could have all jira tickets in a single group, all amazon pages in another, and all google search results in another. For more details, see https://github.com/mivok/tabgrouper/blob/master/README.md *** Questions/Answers: Q: Why do you need the "Can read your browsing history" (or "tabs") permission? A: As you browse, the extension reads the addresses of the sites you, matching them against the rules you write, automatically grouping tabs based on those rules. The extension does not store nor transmit your browsing history anywhere. Q: Why do you need the "View and manage your tab groups" permission? A: The purpose of this extension is to automatically manage your tab groups for you, and so this permission is needed for the extension to work.
확장 프로그램 기본 정보
이름 | Tab Grouper |
ID | cejjplkmdfnnlmphbhpbnfmkhkknnokg |
공식 URL | https://chromewebstore.google.com/detail/tab-grouper/cejjplkmdfnnlmphbhpbnfmkhkknnokg |
설명 | Automatically group tabs based on URL matches |
파일 크기 | 19.59 KB |
설치 횟수 | 735 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2021-03-18 |
출시 날짜 | 2021-03-17 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | Mark Harrison |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mivok/tabgrouper |
도움말 페이지 URL | https://github.com/mivok/tabgrouper/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Grouper", "version": "0.0.1", "description": "Automatically group tabs based on URL matches", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "tabgroups.js" }, "options_page": "options.html", "permissions": [ "tabGroups", "storage", "tabs" ] } |