AI 产品解读Chrome-to-native messaging bridge for print functionality, enabling iCargo web application to send print jobs to a local native print executable
Web browsers cannot directly invoke native printing executables. This extension bridges the gap between the iCargo enterprise cargo management web application and a native print application, allowing users to print cargo reports from within the browser.
1. User opens iCargo web application in browser (hosted on internal IPs like 192.168.x.x or *.ibsplc.aero). 2. User initiates a print action for a cargo report. 3. iCargo web app connects to extension via chrome.runtime.connectExternal. 4. Extension receives print job JSON data and forwards to native messaging host 'com.ibsplc.icargo.print.icoprint'. 5. Native application processes and prints the report. 6. Responses relayed back through extension to web app.
Receives print requests from iCargo web application via external messaging APIForwards print job data to native messaging host (com.ibsplc.icargo.print.icoprint)Relays native app responses back to the web application
- 目标用户
- Airline cargo operations staff / Ground handling agents / Logistics personnel using iCargo system at airlines including ANA, Korean Air, Turkish Airlines, Emirates, Qantas, Air France-KLM Cargo, Cargolux, dnata, BA
- Extension is extremely minimal (3 files, 526 bytes main script) so analysis is straightforward but limited in depth
- Cannot verify the native messaging host application (com.ibsplc.icargo.print.icoprint) capabilities
- The externally_connectable match patterns reveal specific airline customer infrastructure (ANA, Korean Air, Turkish Airlines, Emirates, etc.) suggesting this is a commercial enterprise product, but pricing/licensing details are not in the extension code
付费分析未识别到付费功能
The extension is a minimal 526-byte bridge with no payment logic, subscription checks, license validation, premium gating, or upgrade UI. No payment platforms are referenced. The only keyword hit for 'pro' is a false positive from the base64 payload structure in verified_contents.json.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension itself contains no login UI, authentication logic, or credential-gating mechanism. It is a passive message bridge that listens for external connections and forwards print data to a native messaging host. The iCargo destination service likely requires authentication (enterprise cargo management system), but the extension does not implement or enforce any login.