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 là gì?

TOTP Auto-Display là một tiện ích mở rộng Chrome được phát triển bởi Oliver Dickins, và tính năng chính của nó là "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.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TOTP Auto-Display

Tải xuống các tệp mở rộng TOTP Auto-Display dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TOTP Auto-Display TOTP Auto-Display
ID pacdgcejfkmbioaelkcacjaecdmkoodc
URL Chính Thức https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc
Mô tả 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.
Kích Thước Tệp 52.15 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-05-12
Ngày Phát Hành 2022-03-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Oliver Dickins
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://packages.dickins.dev/TOTP
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}