ParLevel Autofill
Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.
Что такое ParLevel Autofill?
ParLevel Autofill - это расширение Chrome, разработанное https://www.parlevelsystems.com, и его основная функция - "Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.".
Снимки экрана расширения
Скачать файл CRX расширения ParLevel Autofill
Скачайте файлы расширений ParLevel Autofill в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | fbbeljdhhgdakehkkklgnllhapejmbbf |
Официальный URL | https://chromewebstore.google.com/detail/parlevel-autofill/fbbeljdhhgdakehkkklgnllhapejmbbf |
Описание | Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters. |
Размер файла | 14.42 KB |
Количество установок | 140 |
Текущая Версия | 2.6.1 |
Последнее Обновление | 2021-10-02 |
Дата публикации | 2020-04-16 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | https://www.parlevelsystems.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://www.parlevelsystems.com/privacy |
Поддерживаемые языки | 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." } } |