NFC Reader - Browser Extension

Browser extension for uFR Series NFC Readers

Co to jest NFC Reader - Browser Extension?

NFC Reader - Browser Extension to rozszerzenie Chrome opracowane przez https://www.d-logic.net, a jego główną funkcją jest „Browser extension for uFR Series NFC Readers”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia NFC Reader - Browser Extension

Pobierz pliki rozszerzeń NFC Reader - Browser Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        NFC Reader Browser Extension

With this browser extension you can use µFR NFC Readers directly from your browser.

This opens a world of possibilities for integration with online software for time attendance, access control, digital signing, loyalty, cashless payment, etc.

Installation instructions

Step 1
Click "add to Chrome".

Step 2
After adding the NFC Reader Browser Extension to your Chrome browser, you will also need to register the extension in your OS by running the additional installer from the following link: 
https://www.d-logic.net/code/nfc-rfid-reader-sdk/ufr-browser_extensions/tree/master/Store%20installers

Step 3
In the additional settings for the extension make sure enable "Allow access to file URLs".

Video tutorials for extension installation
Windows: https://www.youtube.com/watch?v=WEJHoGSFd_w
macOS: https://youtu.be/Qmhy3XpHH5Y
Linux: coming soon

You can test the NFC Browser extension by visiting our demo software page:
https://www.d-logic.net/browser-extension-demo/

SDK is available at our software repository:
https://www.d-logic.net/code/nfc-rfid-reader-sdk/ufr-browser_extensions

If you require any assistance feel free to contact our technical support team at: [email protected]


About us

Digital Logic Ltd. is an electronics manufacturing company with over 16 years of experience in manufacturing NFC RFID Readers/Writers.
Our NFC devices are used in over 50.000 systems worldwide for digital signing, cashless payment, industry automation, high security access control, bus ticketing, hotel systems, parking systems, time attendance...

Official website: https://www.d-logic.net
Web store: https://webshop.d-logic.net                    

Podstawowe informacje o rozszerzeniu

Nazwa NFC Reader - Browser Extension NFC Reader - Browser Extension
ID kjfmmgpfhdohhcodbkaodgkidbenkgog
Oficjalny URL https://chromewebstore.google.com/detail/nfc-reader-browser-extens/kjfmmgpfhdohhcodbkaodgkidbenkgog
Opis Browser extension for uFR Series NFC Readers
Rozmiar pliku 13.83 KB
Liczba instalacji 20,000
Aktualna Wersja 1.3.1
Ostatnia Aktualizacja 2021-03-19
Data Publikacji 2019-12-05
Ocena 4.75/5 Łącznie 4 Oceny
Deweloper https://www.d-logic.net
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.d-logic.net/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NFC Reader - Browser Extension",
    "manifest_version": 2,
    "version": "1.3.1",
    "description": "Browser extension for uFR Series NFC Readers",
    "permissions": [
        "activeTab",
        "nativeMessaging",
        "tabs"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon128off.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}