Password Revealer

Reveals the value of all password fields on the current page. Great for trying to remember what your password is.

Что такое Password Revealer?

Password Revealer - это расширение Chrome, разработанное Joel Saupe, и его основная функция - "Reveals the value of all password fields on the current page. Great for trying to remember what your password is.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Password Revealer

Скачайте файлы расширений Password Revealer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Password Revealer will reveal the text behind the hidden password fields. This is great if you always forget what your password is and you can't remember what all those '*******' mean.                    

Основная информация о расширении

Название Password Revealer Password Revealer
ID ciimjfgcajblmnjlcgopeflnjdknekkd
Официальный URL https://chromewebstore.google.com/detail/password-revealer/ciimjfgcajblmnjlcgopeflnjdknekkd
Описание Reveals the value of all password fields on the current page. Great for trying to remember what your password is.
Размер файла 7.7 KB
Количество установок 11,999
Текущая Версия 1.0
Последнее Обновление 2015-11-16
Дата публикации 2015-11-16
Рейтинг 4.10/5 Всего 20 оценок
Разработчик Joel Saupe
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Revealer",
    "description": "Reveals the value of all password fields on the current page. Great for trying to remember what your password is.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "unlock-icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}