Password visibility toggle

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

Hvad er Password visibility toggle?

Password visibility toggle er en Chrome-udvidelse udviklet af codeberg30, og dens hovedfunktion er "Allows user to reveal their own passwords on input fields via context menu.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Password visibility toggle-udvidelses-CRX-fil

Download Password visibility toggle-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
Officiel URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Beskrivelse Allows user to reveal their own passwords on input fields via context menu.
Filstørrelse 8.46 KB
Antal Installationer 505
Nuværende Version 1.0
Senest Opdateret 2016-10-20
Udgivelsesdato 2016-10-20
Udvikler codeberg30
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Understøttede Sprog 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
        }
    ]
}