Password visibility toggle

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

Co to jest Password visibility toggle?

Password visibility toggle to rozszerzenie Chrome opracowane przez codeberg30, a jego główną funkcją jest „Allows user to reveal their own passwords on input fields via context menu.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Password visibility toggle

Pobierz pliki rozszerzeń Password visibility toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
Oficjalny URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Opis Allows user to reveal their own passwords on input fields via context menu.
Rozmiar pliku 8.46 KB
Liczba instalacji 505
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-10-20
Data Publikacji 2016-10-20
Deweloper codeberg30
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Obsługiwane Języki 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
        }
    ]
}