Show Password

Forgotten your password? Show password of password field. Source Code can be found in Github.

Apa itu Show Password?

Show Password adalah ekstensi Chrome yang dikembangkan oleh Simon Meraner, dan fitur utamanya adalah "Forgotten your password? Show password of password field. Source Code can be found in Github.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Show Password

Unduh file ekstensi Show Password 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

                        Show hidden passwords in password fields. Right-click to a password field and click "Show Password"                    

Informasi Dasar Ekstensi

Nama Show Password Show Password
ID aglbjehgamjplgcjkcembamkcaclecmi
URL Resmi https://chromewebstore.google.com/detail/show-password/aglbjehgamjplgcjkcembamkcaclecmi
Deskripsi Forgotten your password? Show password of password field. Source Code can be found in Github.
Ukuran File 10.79 KB
Jumlah Instalasi 28
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2019-04-18
Tanggal Publikasi 2019-04-14
Pengembang Simon Meraner
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Password",
    "author": "smeraner",
    "version": "1.0.1",
    "description": "Forgotten your password? Show password of password field. Source Code can be found in Github.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "icons": {
        "16": "images\/img16.png",
        "32": "images\/img32.png",
        "48": "images\/img48.png",
        "128": "images\/img128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}