Tab Group Helper
Allow quick grouping of tabs by their attributes like title or URL
Tab Group Helper là gì?
Tab Group Helper là một tiện ích mở rộng Chrome được phát triển bởi Mike DiDomizio, và tính năng chính của nó là "Allow quick grouping of tabs by their attributes like title or URL".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tab Group Helper
Tải xuống các tệp mở rộng Tab Group Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Group Helper |
ID | llhkcebnebfiaamifhbpehjompplpnae |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-group-helper/llhkcebnebfiaamifhbpehjompplpnae |
Mô tả | Allow quick grouping of tabs by their attributes like title or URL |
Kích Thước Tệp | 125 KB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 1.9.1 |
Cập Nhật Lần Cuối | 2022-04-08 |
Ngày Phát Hành | 2021-04-13 |
Nhà Phát Triển | Mike DiDomizio |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mikedidomizio/tab-group-helper |
URL Trang Trợ Giúp | https://github.com/mikedidomizio/tab-group-helper |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |