Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

Что такое Password visibility toggle?

Password visibility toggle - это расширение Chrome, разработанное codeberg30, и его основная функция - "Allows user to reveal their own passwords on input fields via context menu.".

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

screenshot
screenshot

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

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

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

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

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

Название Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
Официальный URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Описание Allows user to reveal their own passwords on input fields via context menu.
Размер файла 8.46 KB
Количество установок 505
Текущая Версия 1.0
Последнее Обновление 2016-10-20
Дата публикации 2016-10-20
Разработчик codeberg30
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}