ParLevel Autofill
Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
Vad är ParLevel Autofill?
ParLevel Autofill är en Chrome-tillägg utvecklad av https://www.parlevelsystems.com, och dess huvudfunktion är "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.".
Tilläggsskärmbilder
Ladda ner ParLevel Autofill-förlängningens CRX-fil
Ladda ner ParLevel Autofill-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | fbbeljdhhgdakehkkklgnllhapejmbbf |
Officiell webbadress | https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf |
Beskrivning | Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters. |
Filstorlek | 14.42 KB |
Antal Installationer | 140 |
Aktuell Version | 2.6.1 |
Senast Uppdaterad | 2021-10-02 |
Publiceringsdatum | 2020-04-16 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | https://www.parlevelsystems.com |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.parlevelsystems.com/privacy |
Stödda Språk | 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." } } |