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是由https://www.parlevelsystems.com开发的Chrome扩展程序,该扩展的主要功能是“Receives data from the ParLevel Serial Monitor application to fill in web forms with data received from money counters.”。
扩展截图
下载ParLevel Autofill扩展crx文件
下载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." } } |