4 Smart Shortcuts
Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
4 Smart Shortcuts là gì?
4 Smart Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi rawbytz, và tính năng chính của nó là "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.".
Ả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 4 Smart Shortcuts
Tải xuống các tệp mở rộng 4 Smart Shortcuts 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
• 'Smart' keyboard shortcuts won't duplicate existing tabs. • Great for fullscreen. • Support for "chrome://" system shortcuts like, chrome://extensions & chrome://apps • Goes to existing tabs based on a "starts with" matching pattern. EXAMPLES: • Shortcut: https://www.google.com goes to the existing tab https://www.google.com/contacts • Shortcut: https://www.google.com/contacts does NOT go to the existing tab https://www.google.com
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | 4 Smart Shortcuts |
ID | fmmofgdcmllajpdnnpllmlffogijffan |
URL Chính Thức | https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan |
Mô tả | Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist. |
Kích Thước Tệp | 12.06 KB |
Số Lần Cài Đặt | 124 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2018-03-08 |
Ngày Phát Hành | 2018-03-07 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | rawbytz |
[email protected] | |
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": "4 Smart Shortcuts", "version": "1.4", "description": "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "icons": { "128": "4SS_128.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "site1": { "description": "Launch Site 1" }, "site2": { "description": "Launch Site 2" }, "site3": { "description": "Launch Site 3" }, "site4": { "description": "Launch Site 4" } } } |