Show Passwords

This extension transforms password fields into plain text fields.

Wat is Show Passwords?

Show Passwords is een Chrome-extensie ontwikkeld door https://www.dahlkemedia.com, en de belangrijkste functie is "This extension transforms password fields into plain text fields.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Show Passwords

Download Show Passwords-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

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

Basisinformatie over de Extensie

Naam Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
Officiële URL https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
Beschrijving This extension transforms password fields into plain text fields.
Bestandsgrootte 6.14 KB
Aantal Installaties 185
Huidige Versie 1.1
Laatst Bijgewerkt 2021-12-20
Publicatiedatum 2016-08-31
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.dahlkemedia.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}