ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

ShowPasswords क्या है?

ShowPasswords https://kaletsch.tech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gives the user a simple way to show and copy passwords of an input type password field."।

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

screenshot
screenshot
screenshot

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

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

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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

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

नाम ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
आधिकारिक URL https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
विवरण Gives the user a simple way to show and copy passwords of an input type password field.
फ़ाइल का आकार 47.5 KB
स्थापना संख्या 313
वर्तमान संस्करण 0.1
अंतिम अपडेट 2018-08-03
प्रकाशन तिथि 2018-08-03
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://kaletsch.tech
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}