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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ParLevel Autofill ParLevel Autofill
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."
    }
}