ParLevel Autofill

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

Was ist ParLevel Autofill?

ParLevel Autofill ist eine Chrome-Erweiterung, die von https://www.parlevelsystems.com entwickelt wurde, und ihr Hauptmerkmal ist "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.".

Erweiterungsscreenshots

screenshot

ParLevel Autofill-Erweiterungs-CRX-Datei herunterladen

Laden Sie ParLevel Autofill-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ParLevel Autofill ParLevel Autofill
ID fbbeljdhhgdakehkkklgnllhapejmbbf
Offizielle URL https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf
Beschreibung Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
Dateigröße 14.42 KB
Installationsanzahl 140
Aktuelle Version 2.6.1
Letztes Update 2021-10-02
Veröffentlichungsdatum 2020-04-16
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://www.parlevelsystems.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.parlevelsystems.com/privacy
Unterstützte Sprachen 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."
    }
}