Password Viewer

Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click

Was ist Password Viewer?

Password Viewer ist eine Chrome-Erweiterung, die von Satbir Kaushik entwickelt wurde, und ihr Hauptmerkmal ist "Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Password Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Password Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension facilitates the direct copying or viewing of passwords from input fields containing asterisk signs on any currently open web page.
--
Unlock a seamless browsing experience with our Chrome extension! By installing this powerful tool, you not only enhance your online interactions but also support the creation of valuable and innovative extensions. 
Your contribution fuels my dedication to developing top-notch solutions. Install now and be part of my mission to make your web journey extraordinary.                    

Grundlegende Informationen zur Erweiterung

Name Password Viewer Password Viewer
ID majhkhdiofehedjpbcoakbmoiogbmcdp
Offizielle URL https://chromewebstore.google.com/detail/password-viewer/majhkhdiofehedjpbcoakbmoiogbmcdp
Beschreibung Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click
Dateigröße 43.53 KB
Installationsanzahl 4,826
Aktuelle Version 1.3
Letztes Update 2023-09-04
Veröffentlichungsdatum 2018-03-17
Bewertung 3.86/5 Insgesamt 7 Bewertungen
Entwickler Satbir Kaushik
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password Viewer",
    "manifest_version": 3,
    "version": "1.3",
    "description": "Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click",
    "action": {
        "name": "Password Viewer",
        "icons": [
            "icon.png"
        ],
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_title": "Password Viewer"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "copy.svg",
                "hide.svg",
                "show.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}