ParLevel Autofill

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

O que é ParLevel Autofill?

ParLevel Autofill é uma extensão do Chrome desenvolvida por https://www.parlevelsystems.com, e sua principal característica é "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ParLevel Autofill

Baixe arquivos de extensão ParLevel Autofill no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome ParLevel Autofill ParLevel Autofill
ID fbbeljdhhgdakehkkklgnllhapejmbbf
URL Oficial https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf
Descrição Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
Tamanho do Arquivo 14.42 KB
Contagem de Instalações 140
Versão Atual 2.6.1
Última Atualização 2021-10-02
Data de Publicação 2020-04-16
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://www.parlevelsystems.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.parlevelsystems.com/privacy
Idiomas Suportados 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."
    }
}