Simple OTP Token Generator

A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.

Simple OTP Token Generatorとは何ですか?

Simple OTP Token Generatorはdanielerezによって開発されたChromeの拡張機能で、その主な機能は「A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.」です。

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

screenshot
screenshot
screenshot
screenshot

Simple OTP Token Generator拡張機能のCRXファイルをダウンロード

Simple OTP Token Generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.                    

拡張機能の基本情報

名前 Simple OTP Token Generator Simple OTP Token Generator
ID lcohfbdkckffmhclhoidahddlkffebaa
公式URL https://chromewebstore.google.com/detail/simple-otp-token-generato/lcohfbdkckffmhclhoidahddlkffebaa
説明 A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.
ファイルサイズ 221 KB
インストール数 645
現在のバージョン 1.0.0.4
最終更新日 2018-07-20
公開日 2018-07-20
評価 4.20/5 合計 5 レビュー
開発者 danielerez
支払い方法 free
拡張機能のウェブサイト https://github.com/chipchaderez/otp-gen-chrome-ext
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple OTP Token Generator",
    "version": "1.0.0.4",
    "manifest_version": 2,
    "description": "A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.",
    "browser_action": {
        "default_icon": "assets\/lock.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "scripts\/background.js",
            "scripts\/key-utils.js",
            "scripts\/lib\/hotp.js",
            "scripts\/lib\/2.0.0-crypto-sha1.js",
            "scripts\/lib\/2.0.0-hmac-min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "assets\/lock.png",
        "48": "assets\/lock.png",
        "128": "assets\/lock.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "paste_otp": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Paste OTP Token"
        }
    }
}