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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oicramps และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Handheld Simulator

ดาวน์โหลดไฟล์ส่วนขยาย Handheld Simulator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 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"
            }
        }
    }
}