Password Revealer

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

Password Revealer là gì?

Password Revealer là một tiện ích mở rộng Chrome được phát triển bởi iinmass, và tính năng chính của nó là "Toggle passwords in dev mode. Enhance development workflow with password visibility.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Password Revealer

Tải xuống các tệp mở rộng Password Revealer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Password Revealer Password Revealer
ID flihklbendkffliaoifabcckjlgecmgl
URL Chính Thức https://chromewebstore.google.com/detail/password-revealer/flihklbendkffliaoifabcckjlgecmgl
Mô tả Toggle passwords in dev mode. Enhance development workflow with password visibility.
Kích Thước Tệp 34.54 KB
Số Lần Cài Đặt 241
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-06-24
Ngày Phát Hành 2023-06-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển iinmass
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}