Duo Passcode Generator
Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
Co to jest Duo Passcode Generator?
Duo Passcode Generator to rozszerzenie Chrome opracowane przez software.avik, a jego główną funkcją jest „Generates HOTP Passcodes for Duo Security Multi-Factor Authentication”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Duo Passcode Generator
Pobierz pliki rozszerzeń Duo Passcode Generator 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
Duo Passcode Generator can generate passcodes for Duo Security's multi-factor authentication. It can also autocomplete the passcode field upon generation, allowing instant login after signing in with your normal credentials. Setup and usage instructions can be found at https://github.com/AvikRao/duo-extension/wiki/Setup-and-Usage Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ilpdnmgdkjanagbdpgppgkjnlgkmdpec |
| Oficjalny URL | https://chromewebstore.google.com/detail/duo-passcode-generator/ilpdnmgdkjanagbdpgppgkjnlgkmdpec |
| Opis | Generates HOTP Passcodes for Duo Security Multi-Factor Authentication |
| Rozmiar pliku | 37.14 KB |
| Liczba instalacji | 244 |
| Aktualna Wersja | 2.0.1 |
| Ostatnia Aktualizacja | 2023-08-14 |
| Data Publikacji | 2021-12-27 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | software.avik |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/AvikRao/duo-extension |
| Adres URL Strony Pomocy | https://github.com/AvikRao/duo-extension/issues |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Duo Passcode Generator",
"description": "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication",
"version": "2.0.1",
"manifest_version": 2,
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.duosecurity.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"permissions": [
"storage",
"*:\/\/*.duosecurity.com\/*"
],
"browser_action": {
"default_popup": ".\/popup.html"
},
"icons": {
"16": ".\/assets\/icons\/icon16.png",
"48": ".\/assets\/icons\/icon48.png",
"128": ".\/assets\/icons\/icon128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+D"
}
}
},
"applications": {
"gecko": {
"id": "duo@extension"
}
}
} | |