Tab Switcher
Rapidly filter and switch between windows & tabs
Tab Switcher là gì?
Tab Switcher là một tiện ích mở rộng Chrome được phát triển bởi https://flowapps.co/tabswitcher, và tính năng chính của nó là "Rapidly filter and switch between windows & 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 Tab Switcher
Tải xuống các tệp mở rộng Tab Switcher 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 Switcher lets you to quickly switch to other open tabs using only the keyboard, including filtering tabs by partial name or URL match. - Filter by tab title or URL with fuzzy autocompletion. - Press ⌘/Ctrl⇧K to start filtering, move selection with ↑↓, press ⏎ to switch. WHAT'S NEW November 6th 2019 – You can now drag and and drop tabs between windows. And of course, dark mode! September 8th 2018 – Updated to match the new Chrome Material design July 23th 2018 – Users can now decide whether to show tabs from all windows July 8th 2018 – It's now possible to switch between windows. FAQ Why does Tab Switcher need access to my browsing history? – This is required to allow you to search and switch between tabs. Only titles and URLs of tab are used for this, and no data is stored or sent anywhere. Please check out the source code at https://github.com/kallepersson/tabswitcher. How do I change the keyboard shortcut to show Tab Switcher? – It's easy, you can change the Keyboard Shortcut at the bottom of the Extensions Settings Page! PRIVACY POLICY Please find the privacy policy at http://flowapps.co/tabswitcher/privacypolicy.html
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Switcher |
ID | gcilookdakgpccpbcjgnpaecofklimck |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-switcher/gcilookdakgpccpbcjgnpaecofklimck |
Mô tả | Rapidly filter and switch between windows & tabs |
Kích Thước Tệp | 53.98 KB |
Số Lần Cài Đặt | 5,368 |
Phiên Bản Hiện Tại | 2.2.0 |
Cập Nhật Lần Cuối | 2020-11-18 |
Ngày Phát Hành | 2020-02-10 |
Đánh Giá | 4.70/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | https://flowapps.co/tabswitcher |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://flowapps.co/tabswitcher/ |
URL Trang Trợ Giúp | http://flowapps.co/tabswitcher/ |
URL Trang Chính Sách Bảo Mật | http://flowapps.co/privacypolicy.html |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Switcher", "author": "Kalle Persson", "version": "2.2.0", "homepage_url": "http:\/\/flowapps.co\/tabswitcher", "description": "Rapidly filter and switch between windows & tabs", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "tabs", "storage" ], "icons": { "16": "icons\/icon-16.png", "19": "icons\/icon-19.png", "38": "icons\/icon-38.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "switcher.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+K" } } } } |