Keyed - Onscreen key logger

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

What is Keyed - Onscreen key logger?

Keyed - Onscreen key logger is a Chrome extension developed by Scott Brown, and its main feature is "KEYED show keys as you type in chrome; useful for demos and such.".

Extension Screenshots

screenshot
screenshot

Download Keyed - Onscreen key logger Extension CRX File

Download Keyed - Onscreen key logger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Keyed - Onscreen key logger Keyed - Onscreen key logger
ID ieffkiaajoikjeliemfkiobkfnccbooh
Official URL https://chromewebstore.google.com/detail/keyed-onscreen-key-logger/ieffkiaajoikjeliemfkiobkfnccbooh
Description KEYED show keys as you type in chrome; useful for demos and such.
File Size 103 KB
Installation Count 388
Current Version 1.0.1
Last Updated 2022-05-21
Publish Date 2022-03-25
Developer Scott Brown
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}