Keyed - Onscreen key logger

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

Co je Keyed - Onscreen key logger?

Keyed - Onscreen key logger je rozšíření Chrome vyvinuté Scott Brown, a jeho hlavní funkcí je „KEYED show keys as you type in chrome; useful for demos and such.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Keyed - Onscreen key logger

Stáhněte si soubory rozšíření Keyed - Onscreen key logger ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Keyed - Onscreen key logger Keyed - Onscreen key logger
ID ieffkiaajoikjeliemfkiobkfnccbooh
Oficiální URL https://chromewebstore.google.com/detail/keyed-onscreen-key-logger/ieffkiaajoikjeliemfkiobkfnccbooh
Popis KEYED show keys as you type in chrome; useful for demos and such.
Velikost souboru 103 KB
Počet instalací 388
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-05-21
Datum Vydání 2022-03-25
Vývojář Scott Brown
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}