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.
TOTP Auto-Display란 무엇입니까?
TOTP Auto-Display은(는) Oliver Dickins에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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."입니다.
확장 프로그램 스크린샷
TOTP Auto-Display 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | TOTP Auto-Display |
ID | pacdgcejfkmbioaelkcacjaecdmkoodc |
공식 URL | https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc |
설명 | 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. |
파일 크기 | 52.15 KB |
설치 횟수 | 75 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2023-05-12 |
출시 날짜 | 2022-03-30 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Oliver Dickins |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://packages.dickins.dev/TOTP |
지원되는 언어 | 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" } } |