Password Viewer

View saved password of web applications

Что такое Password Viewer?

Password Viewer - это расширение Chrome, разработанное suprit shah, и его основная функция - "View saved password of web applications".

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

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

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

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

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

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

Название Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
Официальный URL https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Описание View saved password of web applications
Размер файла 41.64 KB
Количество установок 593
Текущая Версия 1.0
Последнее Обновление 2019-09-27
Дата публикации 2019-09-25
Разработчик suprit shah
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}