Keyed - Onscreen key logger

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

Keyed - Onscreen key logger란 무엇입니까?

Keyed - Onscreen key logger은(는) Scott Brown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "KEYED show keys as you type in chrome; useful for demos and such."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Keyed - Onscreen key logger 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Keyed - Onscreen key logger Keyed - Onscreen key logger
ID ieffkiaajoikjeliemfkiobkfnccbooh
공식 URL https://chromewebstore.google.com/detail/keyed-onscreen-key-logger/ieffkiaajoikjeliemfkiobkfnccbooh
설명 KEYED show keys as you type in chrome; useful for demos and such.
파일 크기 103 KB
설치 횟수 388
현재 버전 1.0.1
최근 업데이트 2022-05-21
출시 날짜 2022-03-25
개발자 Scott Brown
이메일 [email protected]
결제 유형 free
지원되는 언어 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": [
                ""
            ]
        }
    ]
}