ParLevel Autofill
Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
Cos'è ParLevel Autofill?
ParLevel Autofill è un'estensione di Chrome sviluppata da https://www.parlevelsystems.com, e la sua funzione principale è "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ParLevel Autofill
Scarica i file di estensione ParLevel Autofill in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | fbbeljdhhgdakehkkklgnllhapejmbbf |
URL Ufficiale | https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf |
Descrizione | Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters. |
Dimensione del File | 14.42 KB |
Conteggio Installazioni | 140 |
Versione Corrente | 2.6.1 |
Ultimo Aggiornamento | 2021-10-02 |
Data di Pubblicazione | 2020-04-16 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | https://www.parlevelsystems.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.parlevelsystems.com/privacy |
Lingue Supportate | 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." } } |