ShowPasswords

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

Apa itu ShowPasswords?

ShowPasswords adalah ekstensi Chrome yang dikembangkan oleh https://kaletsch.tech, dan fitur utamanya adalah "Gives the user a simple way to show and copy passwords of an input type password field.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ShowPasswords

Unduh file ekstensi ShowPasswords dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
URL Resmi https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Deskripsi Gives the user a simple way to show and copy passwords of an input type password field.
Ukuran File 47.5 KB
Jumlah Instalasi 313
Versi Saat Ini 0.1
Terakhir Diperbarui 2018-08-03
Tanggal Publikasi 2018-08-03
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://kaletsch.tech
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}