NFC Reader - Browser Extension

Browser extension for uFR Series NFC Readers

Co je NFC Reader - Browser Extension?

NFC Reader - Browser Extension je rozšíření Chrome vyvinuté https://www.d-logic.net, a jeho hlavní funkcí je „Browser extension for uFR Series NFC Readers“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření NFC Reader - Browser Extension

Stáhněte si soubory rozšíření NFC Reader - Browser Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název NFC Reader - Browser Extension NFC Reader - Browser Extension
ID kjfmmgpfhdohhcodbkaodgkidbenkgog
Oficiální URL https://chromewebstore.google.com/detail/nfc-reader-browser-extens/kjfmmgpfhdohhcodbkaodgkidbenkgog
Popis Browser extension for uFR Series NFC Readers
Velikost souboru 13.83 KB
Počet instalací 20,000
Aktuální Verze 1.3.1
Poslední Aktualizace 2021-03-19
Datum Vydání 2019-12-05
Hodnocení 4.75/5 Celkem 4 Hodnocení
Vývojář https://www.d-logic.net
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.d-logic.net/privacy-policy
Podporované Jazyky 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"
        ]
    }
}