ParLevel Autofill

Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.

Co to jest ParLevel Autofill?

ParLevel Autofill to rozszerzenie Chrome opracowane przez https://www.parlevelsystems.com, a jego główną funkcją jest „Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ParLevel Autofill

Pobierz pliki rozszerzeń ParLevel Autofill 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

                        This extension works together with the ParLevel Serial Monitor Chrome App to automatically fill money inputs (Coins and Bills) that are transmitted by Cummins Allison counters into the ParLevel VMS Consolidation screen.                    

Podstawowe informacje o rozszerzeniu

Nazwa ParLevel Autofill ParLevel Autofill
ID fbbeljdhhgdakehkkklgnllhapejmbbf
Oficjalny URL https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf
Opis Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
Rozmiar pliku 14.42 KB
Liczba instalacji 140
Aktualna Wersja 2.6.1
Ostatnia Aktualizacja 2021-10-02
Data Publikacji 2020-04-16
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper https://www.parlevelsystems.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.parlevelsystems.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ParLevel Autofill",
    "description": "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.",
    "version": "2.6.1",
    "minimum_chrome_version": "23",
    "permissions": [
        "management"
    ],
    "icons": {
        "19": "icons\/icon-19.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/daily-routes\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/money-bags\/*"
            ],
            "js": [
                "js\/content-bypass.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon-19.png",
        "default_title": "Click to launch ParLevel Serial Monitor."
    }
}