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
官方網址 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
電子郵箱 [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"
    }
}