Block RFID Reader/Writer

Native Messaging plugin for RFID block device

Block RFID Reader/Writerคืออะไร?

Block RFID Reader/Writer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย simplicity.online และคุณลักษณะหลักของมันคือ "Native Messaging plugin for RFID block device"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block RFID Reader/Writer

ดาวน์โหลดไฟล์ส่วนขยาย Block RFID Reader/Writer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        What is this Browser Extension?
This browser extension bridges your web application and the RF2400 RFID reader, allowing you to read and write RFID tags from your browser with JavaScript events. We provide a JavaScript library for integration, which is on GitHub:

https://github.com/johnSSG/RFIDBlock

What is RFID Technology?
Radio Frequency Identification (RFID) as a tracking tool has broad applications. An RFID tag or chip, which comes in a small form factor, can be attached to anything from packages and devices to vital records. The antenna on the tag receives a signal, and a reader device interprets it to carry out the tracking capabilities. The reader device can parse the information and send it to another device on your network or even a web application in the cloud.

Many businesses use RFID technology due to its broad application, versatility, scalability, and ability to enhance productivity, quality assurance, and efficiency.

What is the RF2400 Block RFID Reader?
The RFID Block is a standalone RFID reader/writer designed as a plug-and-play device when connected to your PC’s USB port. Incorporating the RF 2400 reader/writer board, the RFID Block has low power requirements to enable it to use the power from the USB port with no other connection required.

Requirements
- RF2400 RFID Block Reader
- A web application with the RFIDBlock class from github (or your own library using the events from that source code)
- Our executable (optional, you can develop your own console app for this part):
https://simplicity.online/EnsyncBlock.msi

Drivers for the device:
https://ftdichip.com/drivers/vcp-drivers/

RFID integration is a complex task. If you need help, please get in touch with us at:

https://simplicity.online/contact/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Block RFID Reader/Writer Block RFID Reader/Writer
ID njlpnnedlnahjlefhkdckhindoigeenl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/block-rfid-readerwriter/njlpnnedlnahjlefhkdckhindoigeenl
คำอธิบาย Native Messaging plugin for RFID block device
ขนาดไฟล์ 43.31 KB
จำนวนการติดตั้ง 75
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-04-05
วันที่เผยแพร่ 2018-01-30
ผู้พัฒนา simplicity.online
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://simplicity.online/
URL หน้าช่วยเหลือ https://simplicity.online/contact/
URL หน้านโยบายความเป็นส่วนตัว https://simplicity.online/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Block RFID Reader\/Writer",
    "description": "Native Messaging plugin for RFID block device",
    "version": "1.0",
    "icons": {
        "32": "icons\/rfid.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/rfid.png"
    },
    "permissions": [
        "nativeMessaging"
    ]
}