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.
Wat is TOTP Auto-Display?
TOTP Auto-Display is een Chrome-extensie ontwikkeld door Oliver Dickins, en de belangrijkste functie is "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.".
Extensie Screenshots
Download het CRX-bestand van de extensie TOTP Auto-Display
Download TOTP Auto-Display-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | TOTP Auto-Display |
ID | pacdgcejfkmbioaelkcacjaecdmkoodc |
Officiële URL | https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc |
Beschrijving | 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. |
Bestandsgrootte | 52.15 KB |
Aantal Installaties | 75 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2023-05-12 |
Publicatiedatum | 2022-03-30 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Oliver Dickins |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://packages.dickins.dev/TOTP |
Ondersteunde Talen | 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" } } |