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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oliver Dickins และคุณลักษณะหลักของมันคือ "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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TOTP Auto-Display
ดาวน์โหลดไฟล์ส่วนขยาย TOTP Auto-Display ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |