Password Revealer

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

ما هو Password Revealer؟

Password Revealer هو إضافة Chrome تم تطويرها بواسطة iinmass، والميزة الرئيسية لها هي "Toggle passwords in dev mode. Enhance development workflow with password visibility.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Password Revealer

قم بتنزيل ملفات الامتداد Password Revealer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}