Keyed - Onscreen key logger

KEYED show keys as you type in chrome; useful for demos and such.

Cos'è Keyed - Onscreen key logger?

Keyed - Onscreen key logger è un'estensione di Chrome sviluppata da Scott Brown, e la sua funzione principale è "KEYED show keys as you type in chrome; useful for demos and such.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Keyed - Onscreen key logger

Scarica i file di estensione Keyed - Onscreen key logger 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

                        Display key presses in browser as you work.

When you share your screen or are demonstrating something, viewers may not be aware of keys you are pressing, and verbalizing it is not always possible or practical. This utility will provide an in-browser visual queue. 

Useful as key logger, presentation tool, or development aid.                    

Informazioni di Base sull'Estensione

Nome Keyed - Onscreen key logger Keyed - Onscreen key logger
ID ieffkiaajoikjeliemfkiobkfnccbooh
URL Ufficiale https://chromewebstore.google.com/detail/keyed-onscreen-key-logger/ieffkiaajoikjeliemfkiobkfnccbooh
Descrizione KEYED show keys as you type in chrome; useful for demos and such.
Dimensione del File 103 KB
Conteggio Installazioni 388
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-05-21
Data di Pubblicazione 2022-03-25
Sviluppatore Scott Brown
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "KEYED show keys as you type in chrome; useful for demos and such.",
    "version": "1.0.1",
    "manifest_version": 3,
    "name": "Keyed - Onscreen key logger",
    "author": "https:\/\/github.com\/brown145",
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}