Password De-Masker

This extension changes all password textboxes into normal textboxes... be safe folks ;-)

Password De-Masker क्या है?

Password De-Masker Ross Dargan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension changes all password textboxes into normal textboxes... be safe folks ;-)"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Password De-Masker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension converts all password textboxes into normal textboxes. It's based on an article Matt Baxter-Reynolds posted here: http://www.zdnet.com/we-need-to-stop-masking-passwords-7000020894/?utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer

Personally I think masking is a good idea, but here is a chance to see for yourself!

Please note Lastpass must be disabled otherwise you will still see hashed passwords.                    

एक्सटेंशन की मूल जानकारी

नाम Password De-Masker Password De-Masker
ID npkhmjmjaoaipkjdflknplfpmhcfdlpb
आधिकारिक URL https://chrome.google.com/webstore/detail/password-de-masker/npkhmjmjaoaipkjdflknplfpmhcfdlpb
विवरण This extension changes all password textboxes into normal textboxes... be safe folks ;-)
फ़ाइल का आकार 3.41 KB
स्थापना संख्या 77
वर्तमान संस्करण 1.0
अंतिम अपडेट 2013-09-19
प्रकाशन तिथि 2013-09-19
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर Ross Dargan
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password De-Masker",
    "description": "This extension changes all password textboxes into normal textboxes... be safe folks ;-)",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ]
}