Password Viewer

This extension will toggle password inputs to text

Apa itu Password Viewer?

Password Viewer adalah ekstensi Chrome yang dikembangkan oleh jamesthornlea92, dan fitur utamanya adalah "This extension will toggle password inputs to text".

Unduh Berkas CRX Ekstensi Password Viewer

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

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

Informasi Dasar Ekstensi

Nama Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
URL Resmi https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Deskripsi This extension will toggle password inputs to text
Ukuran File 7.62 KB
Jumlah Instalasi 947
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-07-19
Tanggal Publikasi 2016-07-19
Penilaian 4.00/5 Total 10 Penilaian
Pengembang jamesthornlea92
Tipe Pembayaran free
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}