TOTP Auto-Display
Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp://' is displayed somewhere on the page.
Was ist TOTP Auto-Display?
TOTP Auto-Display ist eine Chrome-Erweiterung, die von Oliver Dickins entwickelt wurde, und ihr Hauptmerkmal ist "Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp://' is displayed somewhere on the page.".
Erweiterungsscreenshots
TOTP Auto-Display-Erweiterungs-CRX-Datei herunterladen
Laden Sie TOTP Auto-Display-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension will scan a website for values which begin with 'totp://'. When one is found, it will allow the user to click the value to then convert it to a TOTP display, showing the One-Time Password from that secret.
Please also see https://packages.dickins.dev/TOTP Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pacdgcejfkmbioaelkcacjaecdmkoodc |
| Offizielle URL | https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc |
| Beschreibung | Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp://' is displayed somewhere on the page. |
| Dateigröße | 52.15 KB |
| Installationsanzahl | 75 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2023-05-12 |
| Veröffentlichungsdatum | 2022-03-30 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Oliver Dickins |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://packages.dickins.dev/TOTP |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TOTP Auto-Display",
"version": "1.0.1",
"description": "Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp:\/\/' is displayed somewhere on the page.",
"manifest_version": 3,
"author": "Oliver Dickins",
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery.js",
"sha.js",
"totp.js"
],
"css": [
"totp.css"
]
}
],
"host_permissions": [
"*:\/\/*\/*"
],
"icons": {
"16": "1616.png",
"48": "4848.png",
"128": "128128.png"
}
} | |