ParLevel Autofill

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

What is ParLevel Autofill?

ParLevel Autofill is a Chrome extension developed by https://www.parlevelsystems.com, and its main feature is "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.".

Extension Screenshots

screenshot

Download ParLevel Autofill Extension CRX File

Download ParLevel Autofill 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 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.                    

Extension Basic Information

Name ParLevel Autofill ParLevel Autofill
ID fbbeljdhhgdakehkkklgnllhapejmbbf
Official URL https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf
Description Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
File Size 14.42 KB
Installation Count 140
Current Version 2.6.1
Last Updated 2021-10-02
Publish Date 2020-04-16
Rating 5.00/5 Total 4 Ratings
Developer https://www.parlevelsystems.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.parlevelsystems.com/privacy
Supported Languages 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."
    }
}