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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

TOTP Auto-Display拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
    }
}