Bläckfisk Chrome App
Bläckfisk Chrome App Utility bridging any website with standard USB Scales & Scanners. This utility supports any USB HID Scanner, Mettler Toledo family of scales such as PS60, Dymo Scales, & Holtek Scales.
Install Bläckfisk Chrome App
Frequently Asked Questions
Who can use Bläckfisk Chrome App?
Anyone who has running a ChromeOS or Chromium operating system.
What websites are supported?
Any Secured SSL website supporting iFrames. Some websites have server configurations that block frames and currently, these sites are not supported.
How do I access USB Peripherals?
Thru the setting tab, you can choose the currently supported devices thru the dropdowns available.
How will the USB Peripheral communicate with my website?
All device communication is done thru Dispatched Events at the Browser Window layer. See window.postMessage for details on how this works.
Do you have any example code to help me get started?
Bläckfisk is available for basic free support via support@blackfisk.com and we always have paid support options available.
When getting started with Bläckfisk Chrome App, its always best to start with code block below.
<script>window.addEventListener('message', (event) => {
console.log('received message', event)
})
</script>
This basic script will output all activity from the Bläckfisk Chrome App system. From this point, just tie into any event you want control over or interface with to better support your app.
How do I get USB Scale Weight?
Using the same logic as above with the command window.postMessage send a payload. The USB Scale expects an object to contain 2 keys. The type & the last known weight. Zero if you don't have a weight.
{type: 'scale', weight: 0}
And the scale if connected will respond with a valid weight via the addEventListener response.
Do you have support for Bluetooth or WiFi devices?
Currently, we only support USB scales & scanners however email us with your request and we will add it to our development timeline.