Reveal Password

Reveals password on mouse hover

Apa itu Reveal Password?

Reveal Password adalah ekstensi Chrome yang dikembangkan oleh sumeet, dan fitur utamanya adalah "Reveals password on mouse hover".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Reveal Password

Unduh file ekstensi Reveal 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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

Informasi Dasar Ekstensi

Nama Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
URL Resmi https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Deskripsi Reveals password on mouse hover
Ukuran File 10.41 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.2
Terakhir Diperbarui 2017-09-04
Tanggal Publikasi 2017-09-04
Penilaian 3.00/5 Total 4 Penilaian
Pengembang sumeet
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}