Chrome Nfc Listener
Listens to Nfc serial monitor messages
What is Chrome Nfc Listener?
Chrome Nfc Listener is a Chrome extension developed by https://tcit.cl, and its main feature is "Listens to Nfc serial monitor messages".
Extension Screenshots
Download Chrome Nfc Listener Extension CRX File
Download Chrome Nfc Listener extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This app listen to NFC reader device and send events to DispatchApp.
Extension Basic Information
Name | Chrome Nfc Listener |
ID | jmeakhpkgniejdchmiinebcmkdilpina |
Official URL | https://chromewebstore.google.com/detail/chrome-nfc-listener/jmeakhpkgniejdchmiinebcmkdilpina |
Description | Listens to Nfc serial monitor messages |
File Size | 7.1 KB |
Installation Count | 174 |
Current Version | 1.11 |
Last Updated | 2016-02-22 |
Publish Date | 2016-02-22 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://tcit.cl |
Payment Type | free |
Extension Website | http://www.tcit.cl |
Help Page URL | http://www.transituc.com |
Supported Languages | es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Nfc Listener", "description": "Listens to Nfc serial monitor messages", "version": "1.11", "icons": { "128": "DispatchApp.png" }, "background": { "persistent": true, "scripts": [ "bg.js" ] }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ] } |