Password Show Hide
This extension will allow to see store password on password field by adding a eye icon with input field
Co to jest Password Show Hide?
Password Show Hide to rozszerzenie Chrome opracowane przez GreeLogix, a jego główną funkcją jest „This extension will allow to see store password on password field by adding a eye icon with input field”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Password Show Hide
Pobierz pliki rozszerzeń Password Show Hide w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dkdkinddlfncaenemeelaklfcpggabfd |
| Oficjalny URL | https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd |
| Opis | This extension will allow to see store password on password field by adding a eye icon with input field |
| Rozmiar pliku | 90.27 KB |
| Liczba instalacji | 313 |
| Aktualna Wersja | 1.3.1 |
| Ostatnia Aktualizacja | 2023-01-03 |
| Data Publikacji | 2020-10-20 |
| Ocena | 5.00/5 Łącznie 3 Oceny |
| Deweloper | GreeLogix |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://greelogix.com?page_id=6688 |
| Obsługiwane Języki | 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"
}
]
} | |