Manage Tabs by Domain
Close and gather same-domain tabs.
Manage Tabs by Domain là gì?
Manage Tabs by Domain là một tiện ích mở rộng Chrome được phát triển bởi Nicole White, và tính năng chính của nó là "Close and gather same-domain tabs.".
Ả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 Manage Tabs by Domain
Tải xuống các tệp mở rộng Manage Tabs by Domain 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
Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All. You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Manage Tabs by Domain |
ID | jgjhgpeaejjahlbcgijdibooomicdcfi |
URL Chính Thức | https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi |
Mô tả | Close and gather same-domain tabs. |
Kích Thước Tệp | 1.08 MB |
Số Lần Cài Đặt | 362 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2017-06-19 |
Ngày Phát Hành | 2017-06-18 |
Đánh Giá | 4.11/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Nicole White |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/nicolewhite/same-domain-tabs/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manage Tabs by Domain", "short_name": "Manage Tabs", "description": "Close and gather same-domain tabs.", "version": "0.0.2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "commands" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "gather-tabs": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Gather same-domain tabs around active tab." }, "close-tabs": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Close same-domain tabs as active tab." }, "gather-tabs-all": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Gather all same-domain tabs." } }, "browser_action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "manifest_version": 2 } |