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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL страницы политики конфиденциальности 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"
    }
}