Password visibility toggle
Allows user to reveal their own passwords on input fields via context menu.
Password visibility toggle क्या है?
Password visibility toggle codeberg30 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows user to reveal their own passwords on input fields via context menu."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Password visibility toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! This is a very simple extension and the code is up on github if you want to view it.
एक्सटेंशन की मूल जानकारी
नाम | Password visibility toggle |
ID | iogkeonlaimdggmffjapaidkcfplenbi |
आधिकारिक URL | https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi |
विवरण | Allows user to reveal their own passwords on input fields via context menu. |
फ़ाइल का आकार | 8.46 KB |
स्थापना संख्या | 505 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2016-10-20 |
प्रकाशन तिथि | 2016-10-20 |
डेवलपर | codeberg30 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/codeberg30/password-visibility-toggle-chrome-extension |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Password visibility toggle", "version": "1.0", "description": "Allows user to reveal their own passwords on input fields via context menu.", "manifest_version": 2, "icons": { "128": "password_visibility_toggle.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end", "all_frames": true } ] } |