Reveal Passwords
Toggle password fields to text fields so you can see what you've typed (or mistyped).
Reveal Passwords क्या है?
Reveal Passwords Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle password fields to text fields so you can see what you've typed (or mistyped)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reveal Passwords एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.
एक्सटेंशन की मूल जानकारी
नाम | Reveal Passwords |
ID | kbbbdhddofjfncbijifmonfffhkphkhg |
आधिकारिक URL | https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg |
विवरण | Toggle password fields to text fields so you can see what you've typed (or mistyped). |
फ़ाइल का आकार | 15.49 KB |
स्थापना संख्या | 311 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2016-06-12 |
प्रकाशन तिथि | 2016-06-11 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ctrl-freaks/reveal-passwords |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal Passwords", "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).", "version": "1.0.0", "short_name": "revealpasswords", "minimum_chrome_version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Reveal Passwords", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png", "64": "icons\/inactive-64.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |