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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}