Password Show Hide
This extension will allow to see store password on password field by adding a eye icon with input field
Что такое Password Show Hide?
Password Show Hide - это расширение Chrome, разработанное GreeLogix, и его основная функция - "This extension will allow to see store password on password field by adding a eye icon with input field".
Снимки экрана расширения
Скачать файл CRX расширения Password Show Hide
Скачайте файлы расширений Password Show Hide в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Sometimes, we need to get/copy the saved password from password saved field data. This extension enable you to turn password field to text field.
It will add a show link with each password field and on clicking the link it will turn the password visibility to text. Основная информация о расширении
| Название | |
| ID | dkdkinddlfncaenemeelaklfcpggabfd |
| Официальный URL | https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd |
| Описание | This extension will allow to see store password on password field by adding a eye icon with input field |
| Размер файла | 90.27 KB |
| Количество установок | 313 |
| Текущая Версия | 1.3.1 |
| Последнее Обновление | 2023-01-03 |
| Дата публикации | 2020-10-20 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | GreeLogix |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://greelogix.com?page_id=6688 |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Password Show Hide",
"description": "This extension will allow to see store password on password field by adding a eye icon with input field",
"version": "1.3.1",
"homepage_url": "https:\/\/github.com\/abuzer",
"browser_action": {
"default_icon": "favicon.png",
"default_popup": "popup.html",
"default_title": "Passowrd Show\/Hide"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"all_frames": false,
"css": [
"css\/style.css"
],
"js": [
"scripts\/jquery.min.js",
"scripts\/content.js"
],
"web_accessible_resources": [
"jquery.min.js"
],
"run_at": "document_end"
}
]
} | |