Simple Tab Switcher
A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
Simple Tab Switcher là gì?
Simple Tab Switcher là một tiện ích mở rộng Chrome được phát triển bởi JmQu, và tính năng chính của nó là "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.".
Ả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 Simple Tab Switcher
Tải xuống các tệp mở rộng Simple 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
A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available. - The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs. - The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs. *P.S.* You can change it through the *chrome://extensions/shortcuts*. It is open source at https://github.com/SanCoder-Q/tab-switcher
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jmihjpkeaeknejefhonkbgldenaplegj |
URL Chính Thức | https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj |
Mô tả | A Chrome tab switcher which enables a shortcut to switch the current tab to latest one. |
Kích Thước Tệp | 24.19 KB |
Số Lần Cài Đặt | 62 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2022-09-24 |
Ngày Phát Hành | 2019-03-04 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | JmQu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/SanCoder-Q/tab-switcher |
URL Trang Trợ Giúp | https://github.com/SanCoder-Q/tab-switcher |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Switcher", "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.", "version": "0.2.1", "icons": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" }, "browser_action": { "default_icon": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" } }, "background": { "scripts": [ "bundle.min.js" ] }, "commands": { "switchTab": { "suggested_key": { "default": "Alt+Q" }, "description": "Switch to recent tab" }, "moveTabCrossWindow": { "suggested_key": { "default": "Alt+W" }, "description": "Move current tab to next window" } }, "permissions": [ "storage", "commands", "tabs" ], "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher" } |