Password Revealer

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

What is Password Revealer?

Password Revealer is a Chrome extension developed by iinmass, and its main feature is "Toggle passwords in dev mode. Enhance development workflow with password visibility.".

Extension Screenshots

screenshot
screenshot

Download Password Revealer Extension CRX File

Download Password Revealer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Password Revealer Password Revealer
ID flihklbendkffliaoifabcckjlgecmgl
Official URL https://chromewebstore.google.com/detail/password-revealer/flihklbendkffliaoifabcckjlgecmgl
Description Toggle passwords in dev mode. Enhance development workflow with password visibility.
File Size 34.54 KB
Installation Count 241
Current Version 1.0
Last Updated 2023-06-24
Publish Date 2023-06-23
Rating 5.00/5 Total 2 Ratings
Developer iinmass
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}