ShowPasswords

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

Vad är ShowPasswords?

ShowPasswords är en Chrome-tillägg utvecklad av https://kaletsch.tech, och dess huvudfunktion är "Gives the user a simple way to show and copy passwords of an input type password field.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ShowPasswords-förlängningens CRX-fil

Ladda ner ShowPasswords-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
Officiell webbadress https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Beskrivning Gives the user a simple way to show and copy passwords of an input type password field.
Filstorlek 47.5 KB
Antal Installationer 313
Aktuell Version 0.1
Senast Uppdaterad 2018-08-03
Publiceringsdatum 2018-08-03
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://kaletsch.tech
Betalningssätt free
Stödda Språk 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"
    ]
}