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.

Cos'è Simple OTP Token Generator?

Simple OTP Token Generator è un'estensione di Chrome sviluppata da danielerez, e la sua funzione principale è "A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Simple OTP Token Generator

Scarica i file di estensione Simple OTP Token Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Simple OTP Token Generator Simple OTP Token Generator
ID lcohfbdkckffmhclhoidahddlkffebaa
URL Ufficiale https://chromewebstore.google.com/detail/simple-otp-token-generato/lcohfbdkckffmhclhoidahddlkffebaa
Descrizione A simple extension for generating HOTP tokens for a single secret. Supports pasting a new token from right-click context menu.
Dimensione del File 221 KB
Conteggio Installazioni 645
Versione Corrente 1.0.0.4
Ultimo Aggiornamento 2018-07-20
Data di Pubblicazione 2018-07-20
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore danielerez
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/chipchaderez/otp-gen-chrome-ext
Lingue Supportate 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"
        }
    }
}