Cycle Input Focus Plus
Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).
Cycle Input Focus Plus là gì?
Cycle Input Focus Plus là một tiện ích mở rộng Chrome được phát triển bởi Thomas Henlich, và tính năng chính của nó là "Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).".
Ả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 Cycle Input Focus Plus
Tải xuống các tệp mở rộng Cycle Input Focus Plus 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
Cycle through (text) inputs with a keycombo. Find and focus username and password fields (works great with external password managers, like KeePass). Based on the Cycle Input Focus add-on by P.C Spruijtenburg This addon provides the following functions (shortcuts are configurable): - goto previous text input field - goto next text input field - goto first login (user name) field (a field preceding a password field) - goto next password field - goto next login (user name) field - goto first password field - goto first (starting) text input field
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cycle Input Focus Plus |
ID | djdpdobiclbpkahefgndddankfankehk |
URL Chính Thức | https://chromewebstore.google.com/detail/cycle-input-focus-plus/djdpdobiclbpkahefgndddankfankehk |
Mô tả | Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass). |
Kích Thước Tệp | 6.3 KB |
Số Lần Cài Đặt | 217 |
Phiên Bản Hiện Tại | 3.0.1 |
Cập Nhật Lần Cuối | 2020-04-30 |
Ngày Phát Hành | 2020-04-30 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Thomas Henlich |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://henlich.de/datenschutz |
Ngôn Ngữ Được Hỗ Trợ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "author": "Thomas Henlich", "version": "3.0.1", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "commands": { "previousInput": { "suggested_key": { "default": "Alt+Shift+X" }, "description": "__MSG_functionPrevious__" }, "nextInput": { "suggested_key": { "default": "Alt+Shift+C" }, "description": "__MSG_functionNext__" }, "firstUserNameInput": { "suggested_key": { "default": "Alt+Shift+U" }, "description": "__MSG_functionFirstLogin__" }, "cyclePWInput": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "__MSG_functionCyclePassword__" }, "cycleUserNameInput": { "description": "__MSG_functionCycleLogin__" }, "firstPWInput": { "description": "__MSG_functionFirstPassword__" }, "firstInput": { "description": "__MSG_functionFirst__" } }, "permissions": [ "activeTab" ] } |