Tab Grouper
Automatically group tabs based on URL matches
Tab Grouper là gì?
Tab Grouper là một tiện ích mở rộng Chrome được phát triển bởi Mark Harrison, và tính năng chính của nó là "Automatically group tabs based on URL matches".
Ả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 Grouper
Tải xuống các tệp mở rộng Tab Grouper 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Grouper |
ID | cejjplkmdfnnlmphbhpbnfmkhkknnokg |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-grouper/cejjplkmdfnnlmphbhpbnfmkhkknnokg |
Mô tả | Automatically group tabs based on URL matches |
Kích Thước Tệp | 19.59 KB |
Số Lần Cài Đặt | 735 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2021-03-18 |
Ngày Phát Hành | 2021-03-17 |
Đánh Giá | 4.43/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Mark Harrison |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mivok/tabgrouper |
URL Trang Trợ Giúp | https://github.com/mivok/tabgrouper/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |