Password revealer
Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.
Что такое Password revealer?
Password revealer - это расширение Chrome, разработанное jonathan.svarden, и его основная функция - "Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.".
Снимки экрана расширения
Скачать файл CRX расширения Password revealer
Скачайте файлы расширений Password revealer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | ekgbhfcaocclbckaiodiegejdinnndja |
| Официальный URL | https://chromewebstore.google.com/detail/password-revealer/ekgbhfcaocclbckaiodiegejdinnndja |
| Описание | Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling. |
| Размер файла | 15.35 KB |
| Количество установок | 967 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2014-03-30 |
| Дата публикации | 2014-03-30 |
| Рейтинг | 4.38/5 Всего 8 оценок |
| Разработчик | jonathan.svarden |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Password revealer",
"version": "0.1",
"description": "Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"revealext.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 2
} | |