พร็อพเพอร์ตี้ไฟล์ Manifest usbPrinters จะประกาศว่าแอปรองรับเครื่องพิมพ์ USB เครื่องใดบ้างโดยใช้ printerProvider API
ตัวอย่าง Manifest.json
{
"name": "My printer app",
"usb_printers": {
"filters": [
// This app can print to the Nexus One and any printer made by Google.
{ "vendorId": 6353, "productId": 19985 },
{ "vendorId": 6353, "interfaceClass": 7 }
]
},
...
}