TabZ
This extension is for people who have too many tabs open and need something to help them manage their browser.
TabZ là gì?
TabZ là một tiện ích mở rộng Chrome được phát triển bởi Andrew Batbouta, và tính năng chính của nó là "This extension is for people who have too many tabs open and need something to help them manage their browser.".
Ả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 TabZ
Tải xuống các tệp mở rộng TabZ 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
This is a chrome extension to help manage too many tabs being open. This will provide users a popup window with all the users tabs open in an easy to read manner. This extension will organize your tabs in the window in alphabetical order and categorized in a logical manner. You can then just click on the name of your page to change your current page to that, or even close the pages. This extension was also built with Matt Poegel.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | inneckpdjbcjkpijhomijlmddbailhcd |
URL Chính Thức | https://chrome.google.com/webstore/detail/tabz/inneckpdjbcjkpijhomijlmddbailhcd |
Mô tả | This extension is for people who have too many tabs open and need something to help them manage their browser. |
Kích Thước Tệp | 428 KB |
Số Lần Cài Đặt | 32 |
Phiên Bản Hiện Tại | 2.1.1 |
Cập Nhật Lần Cuối | 2015-03-14 |
Ngày Phát Hành | 2015-03-14 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Andrew Batbouta |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TabZ", "manifest_version": 2, "version": "2.1.1", "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "stylesheets\/style.css", "stylesheets\/options_style.css" ], "js": [ "javascript\/jquery-1.11.0.js", "javascript\/script.js", "javascript\/options_script.js" ] } ], "description": "This extension is for people who have too many tabs open and need something to help them manage their browser.", "browser_action": { "default_icon": "images\/icon16.png", "default_title": "Tabz", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png" }, "options_page": "options.html", "permissions": [ "tabs", "tabCapture", "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+K", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+U", "linux": "Ctrl+Shift+J" } } } } |