Password Revealer

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

Password Revealerとは何ですか?

Password Revealerはiinmassによって開発されたChromeの拡張機能で、その主な機能は「Toggle passwords in dev mode. Enhance development workflow with password visibility.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Password Revealer拡張機能のCRXファイルをダウンロード

Password Revealer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Password Revealer Password Revealer
ID flihklbendkffliaoifabcckjlgecmgl
公式URL https://chromewebstore.google.com/detail/password-revealer/flihklbendkffliaoifabcckjlgecmgl
説明 Toggle passwords in dev mode. Enhance development workflow with password visibility.
ファイルサイズ 34.54 KB
インストール数 241
現在のバージョン 1.0
最終更新日 2023-06-24
公開日 2023-06-23
評価 5.00/5 合計 2 レビュー
開発者 iinmass
Eメール [email protected]
支払い方法 free
対応言語 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"
    }
}