Show Hide Passwords
A browser action to reveal your saved passwords.
Что такое Show Hide Passwords?
Show Hide Passwords - это расширение Chrome, разработанное akilawickramasekara, и его основная функция - "A browser action to reveal your saved passwords.".
Скачать файл CRX расширения Show Hide Passwords
Скачайте файлы расширений Show Hide Passwords в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This App will allow you to show saved passwords in the browser.. Основная информация о расширении
| Название | |
| ID | dakfaecjbjjojelpglfahpbibcgagbnj |
| Официальный URL | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
| Описание | A browser action to reveal your saved passwords. |
| Размер файла | 53.56 KB |
| Количество установок | 13 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2018-01-27 |
| Дата публикации | 2018-01-27 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | akilawickramasekara |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Show Hide Passwords",
"version": "1.1",
"description": "A browser action to reveal your saved passwords.",
"browser_action": {
"default_title": "Show My Passwords",
"default_icon": "padlock-4-16.png"
},
"icons": {
"16": "padlock-4-16.png",
"48": "padlock-4-48.png",
"128": "padlock-4-256.png"
},
"content_scripts": [
{
"js": [
"jquery-3.3.1.min.js",
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"jquery-3.3.1.min.js",
"script.js"
],
"persistent": false
},
"manifest_version": 2,
"web_accessible_resources": [
"jquery-3.3.1.min.js",
"script.js"
],
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |