Show Passwords

This extension transforms password fields into plain text fields.

Show Passwords क्या है?

Show Passwords https://www.dahlkemedia.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension transforms password fields into plain text fields."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

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

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

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

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

नाम Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
आधिकारिक URL https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
विवरण This extension transforms password fields into plain text fields.
फ़ाइल का आकार 6.14 KB
स्थापना संख्या 185
वर्तमान संस्करण 1.1
अंतिम अपडेट 2021-12-20
प्रकाशन तिथि 2016-08-31
रेटिंग 4.00/5 कुल 2 रेटिंग्स
डेवलपर https://www.dahlkemedia.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}