Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

Apa itu Password visibility toggle?

Password visibility toggle adalah ekstensi Chrome yang dikembangkan oleh codeberg30, dan fitur utamanya adalah "Allows user to reveal their own passwords on input fields via context menu.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Password visibility toggle

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

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

Informasi Dasar Ekstensi

Nama Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
URL Resmi https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Deskripsi Allows user to reveal their own passwords on input fields via context menu.
Ukuran File 8.46 KB
Jumlah Instalasi 505
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-10-20
Tanggal Publikasi 2016-10-20
Pengembang codeberg30
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}