ShowPassword
Show password when mouse over password fields.
ShowPassword क्या है?
ShowPassword a161803398 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show password when mouse over password fields."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ShowPassword एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Show password when mouse over password fields. Have you ever deleted whole password just because you typed a single letter wrong ? Now you can get rid of it. This extension will show you the password in plain text when cursor is over password fields. You can also change when to show password in options. Because many people doubt the security of this extension, I upload it's source code to GitHub. https://github.com/a161803398/ShowPassword Other mode: Show password when Double Click. Show password when On Focus. Show password when Press Ctrl Key. What's new in 1.2.1: Fix extension don't work on some websites that change input type What's new in 1.1.6: Bug fix What's new in 1.1.4: Fix the bug that google account password don't show.
एक्सटेंशन की मूल जानकारी
नाम | ShowPassword |
ID | bbiclfnbhommljbjcoelobnnnibemabl |
आधिकारिक URL | https://chromewebstore.google.com/detail/showpassword/bbiclfnbhommljbjcoelobnnnibemabl |
विवरण | Show password when mouse over password fields. |
फ़ाइल का आकार | 13.61 KB |
स्थापना संख्या | 170,838 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2022-02-11 |
प्रकाशन तिथि | 2017-11-30 |
रेटिंग | 4.54/5 कुल 334 रेटिंग्स |
डेवलपर | a161803398 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/a161803398/ShowPassword |
समर्थित भाषाएँ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ShowPassword", "version": "1.2.1", "manifest_version": 3, "default_locale": "en", "description": "__MSG_extension_description__", "content_scripts": [ { "all_frames": true, "js": [ "showPassword.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "icons": { "128": "icon.png", "64": "icon.png", "32": "icon32.png", "16": "icon32.png" }, "options_page": "options.html", "permissions": [ "storage" ] } |