Tab Organizer
Organizes and Rearranges tabs by URL.
Tab Organizer là gì?
Tab Organizer là một tiện ích mở rộng Chrome được phát triển bởi Devin Soni, và tính năng chính của nó là "Organizes and Rearranges tabs by 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 Organizer
Tải xuống các tệp mở rộng Tab Organizer 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
*** FEATURED ON PRODUCT HUNT AND LIFEHACKER *** Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order. Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs. * * * NEW IN VERSION 1.0: * * * * Options page to manage settings * Automatically sort tabs every 5, 30, or 60 minutes. * Keyboard shortcut "Ctrl + Shift + A" to sort on command.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Organizer |
ID | kkcbifggchajpkagcpagenpfghbplghc |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc |
Mô tả | Organizes and Rearranges tabs by URL. |
Kích Thước Tệp | 8.1 KB |
Số Lần Cài Đặt | 6,272 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-05-12 |
Ngày Phát Hành | 2016-05-11 |
Đánh Giá | 4.43/5 Tổng số 37 Đánh Giá |
Nhà Phát Triển | Devin Soni |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Organizer", "version": "1.0", "manifest_version": 2, "description": "Organizes and Rearranges tabs by URL.", "background": { "persistent": true, "scripts": [ "bg.js", "options.js" ] }, "permissions": [ "tabs", "storage" ], "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png" }, "commands": { "activate": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Activate sorting" } }, "options_page": "options.html" } |