ShowPasswords

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

Co je ShowPasswords?

ShowPasswords je rozšíření Chrome vyvinuté https://kaletsch.tech, a jeho hlavní funkcí je „Gives the user a simple way to show and copy passwords of an input type password field.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření ShowPasswords

Stáhněte si soubory rozšíření ShowPasswords ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
Oficiální URL https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Popis Gives the user a simple way to show and copy passwords of an input type password field.
Velikost souboru 47.5 KB
Počet instalací 313
Aktuální Verze 0.1
Poslední Aktualizace 2018-08-03
Datum Vydání 2018-08-03
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://kaletsch.tech
Typ Platby free
Podporované Jazyky 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"
    ]
}