Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

ما هو Password Revealer with Keyboard Shortcut؟

Password Revealer with Keyboard Shortcut هو إضافة Chrome تم تطويرها بواسطة Sleek Panther، والميزة الرئيسية لها هي "View saved passwords with the click of a button".

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

screenshot
screenshot
screenshot

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

قم بتنزيل ملفات الامتداد Password Revealer with Keyboard Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Your browser remembers your password but you don't? Have no fear, it's easy to turn asterisks into text.

Click the Extension icon to reveal passwords

Alt+R Keyboard Shortcut                    

معلومات أساسية عن التمديد

الاسم Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
عنوان URL الرسمي https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
الوصف View saved passwords with the click of a button
حجم الملف 16.04 KB
عدد التثبيتات 433
النسخة الحالية 1.0.3
آخر تحديث 2023-10-30
تاريخ النشر 2020-04-09
تقييم 3.67/5 مجموع تقييمات 3
المطور Sleek Panther
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
عنوان صفحة المساعدة https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
عنوان صفحة سياسة الخصوصية https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Revealer with Keyboard Shortcut",
    "description": "View saved passwords with the click of a button",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_title": "Alt+R (Reveal Password)"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "revealPassword": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Reveal password in password fields"
        }
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}