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.
What is TOTP Auto-Display?
TOTP Auto-Display is a Chrome extension developed by Oliver Dickins, and its main feature 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.".
Extension Screenshots
Download TOTP Auto-Display Extension CRX File
Download TOTP Auto-Display extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | TOTP Auto-Display |
ID | pacdgcejfkmbioaelkcacjaecdmkoodc |
Official URL | https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc |
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. |
File Size | 52.15 KB |
Installation Count | 75 |
Current Version | 1.0.1 |
Last Updated | 2023-05-12 |
Publish Date | 2022-03-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Oliver Dickins |
[email protected] | |
Payment Type | free |
Extension Website | https://packages.dickins.dev/TOTP |
Supported Languages | 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" } } |