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 क्या है?
Cycle Input Focus Plus Thomas Henlich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cycle Input Focus Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Cycle Input Focus Plus |
ID | djdpdobiclbpkahefgndddankfankehk |
आधिकारिक URL | https://chromewebstore.google.com/detail/cycle-input-focus-plus/djdpdobiclbpkahefgndddankfankehk |
विवरण | Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass). |
फ़ाइल का आकार | 6.3 KB |
स्थापना संख्या | 217 |
वर्तमान संस्करण | 3.0.1 |
अंतिम अपडेट | 2020-04-30 |
प्रकाशन तिथि | 2020-04-30 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | Thomas Henlich |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://henlich.de/datenschutz |
समर्थित भाषाएँ | 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" ] } |