ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

Wat is ShowPasswords?

ShowPasswords is een Chrome-extensie ontwikkeld door https://kaletsch.tech, en de belangrijkste functie is "Gives the user a simple way to show and copy passwords of an input type password field.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie ShowPasswords

Download ShowPasswords-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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

Basisinformatie over de Extensie

Naam ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
Officiële URL https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Beschrijving Gives the user a simple way to show and copy passwords of an input type password field.
Bestandsgrootte 47.5 KB
Aantal Installaties 313
Huidige Versie 0.1
Laatst Bijgewerkt 2018-08-03
Publicatiedatum 2018-08-03
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://kaletsch.tech
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}