Handheld Simulator

This extension simulates a barcode scanner, but instead of scanning you have just to type the value in the popup text field and the…

Handheld Simulator란 무엇입니까?

Handheld Simulator은(는) oicramps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension simulates a barcode scanner, but instead of scanning you have just to type the value in the popup text field and the…"입니다.

확장 프로그램 스크린샷

screenshot

Handheld Simulator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension simulates a barcode scanner, but instead of scanning you have just to type the value in the popup text field and the scan action will set the given value to the focused input in the page. So the behavior is similar to scanning a barcode with a real device.

You can open the scanning popup by clicking on the extension icon, or using the shortcut Ctrl+Shift+U (or ⌘+Shift+U on Mac). You can also change this shortcut by navigating to chrome://extensions/shortcuts in your browser, locate the Handheld Simulator extension, and set a new shortcut.                    

확장 프로그램 기본 정보

이름 Handheld Simulator Handheld Simulator
ID lodmooidffdogioahhfhnccfpjnblcio
공식 URL https://chromewebstore.google.com/detail/handheld-simulator/lodmooidffdogioahhfhnccfpjnblcio
설명 This extension simulates a barcode scanner, but instead of scanning you have just to type the value in the popup text field and the…
파일 크기 829 KB
설치 횟수 1,790
현재 버전 1.0.2
최근 업데이트 2021-03-22
출시 날짜 2021-01-11
평점 3.50/5 총 8 개의 평점
개발자 oicramps
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Handheld Simulator",
    "version": "1.0.2",
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_popup": "popup\/index.html",
        "default_title": "Handheld Simulator"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            }
        }
    }
}