Password Revealer

Toggle passwords in dev mode. Enhance development workflow with password visibility.

Was ist Password Revealer?

Password Revealer ist eine Chrome-Erweiterung, die von iinmass entwickelt wurde, und ihr Hauptmerkmal ist "Toggle passwords in dev mode. Enhance development workflow with password visibility.".

Erweiterungsscreenshots

screenshot
screenshot

Password Revealer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Password Revealer-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

                        Developer Mode Password Revealer is a powerful Chrome extension designed to enhance your development workflow. It allows you to effortlessly reveal passwords on webpages while in developer mode. With a single click, toggle the visibility of passwords and gain valuable insights during the development process. Whether you're debugging, testing, or simply need a quick peek at passwords, this extension simplifies the task, saving you time and effort. Unlock the power of developer mode with Developer Mode Password Revealer!                    

Grundlegende Informationen zur Erweiterung

Name Password Revealer Password Revealer
ID flihklbendkffliaoifabcckjlgecmgl
Offizielle URL https://chromewebstore.google.com/detail/password-revealer/flihklbendkffliaoifabcckjlgecmgl
Beschreibung Toggle passwords in dev mode. Enhance development workflow with password visibility.
Dateigröße 34.54 KB
Installationsanzahl 241
Aktuelle Version 1.0
Letztes Update 2023-06-24
Veröffentlichungsdatum 2023-06-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler iinmass
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Password Revealer",
    "description": "Toggle passwords in dev mode. Enhance development workflow with password visibility.",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "options.js"
            ]
        }
    ],
    "options_page": "options.html",
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    }
}