Password visibility toggle

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

Wat is Password visibility toggle?

Password visibility toggle is een Chrome-extensie ontwikkeld door codeberg30, en de belangrijkste functie is "Allows user to reveal their own passwords on input fields via context menu.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Password visibility toggle

Download Password visibility toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
Officiële URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Beschrijving Allows user to reveal their own passwords on input fields via context menu.
Bestandsgrootte 8.46 KB
Aantal Installaties 505
Huidige Versie 1.0
Laatst Bijgewerkt 2016-10-20
Publicatiedatum 2016-10-20
Ontwikkelaar codeberg30
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Ondersteunde Talen 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
        }
    ]
}