Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

Co je Password visibility toggle?

Password visibility toggle je rozšíření Chrome vyvinuté codeberg30, a jeho hlavní funkcí je „Allows user to reveal their own passwords on input fields via context menu.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Password visibility toggle

Stáhněte si soubory rozšíření Password visibility toggle 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í

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

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

Název Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
Oficiální URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Popis Allows user to reveal their own passwords on input fields via context menu.
Velikost souboru 8.46 KB
Počet instalací 505
Aktuální Verze 1.0
Poslední Aktualizace 2016-10-20
Datum Vydání 2016-10-20
Vývojář codeberg30
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}