Cupsie Printer Provider is a Chrome extension that allows to add CUPS print queues and standalone IPP/IPPS printers directly into the native Chrome Print Dialog using Chrome's printerProvider API.
- Native Chrome Print Integration: Integrates IPP/CUPS printers into the Chrome browser print destination picker.
- CUPS Server Auto-Discovery: Connects to CUPS servers and automatically discovers all exposed printer queues.
- Standalone IPP/IPPS Support: Connects directly to IPP/IPPS print endpoints on standalone printers without requiring a central print server.
- Advanced Capabilities & Attributes: Automatically queries printer capabilities via IPP (paper sizes, tray selection, paper type, duplex, color, print scaling, stapling, hole punching, folding, etc.) and maps them to Chrome print settings.
- Enterprise Policy Support: Fully configurable via Chrome Extension Managed Storage policy (
schema.json) for enterprise deployments. - Built-in Troubleshooting: Includes a logging and diagnostic UI to view printer response codes and status.
Open the extension Options page (right-click the extension icon and select Options, or navigate to chrome://extensions and click Extension options).
- Under CUPS Servers, enter your CUPS server IP addresses or URLs (one per line).
- Example:
http://192.168.1.10:631orhttps://cups-server.example.com - The extension automatically connects to each server and fetches all available printer queues.
- Under Standalone IPP Printers, click + Add Printer.
- Enter the direct IPP URL endpoint and an optional friendly display name.
- Example:
- URL:
http://192.168.1.50:631/ipp/printorhttps://cups-server.example.com/ipp/print - Name:
Office Color Laser
- URL:
- Adjust the Background Sync Interval (minutes) to control how frequently Cupsie polls your servers and printers for state changes.
- Click Save Settings to persist your configuration and trigger an immediate printer sync.
Enterprise IT administrators can deploy and enforce printer configurations across organization-managed Chrome devices using Chrome Managed Storage policies.
| Policy Key | Type | Description |
|---|---|---|
cupsServers |
Array of Strings | Enterprise CUPS print server URLs/IPs (e.g., ["http://cups.domain.local:631"]). |
ippPrinters |
Array of Objects | Direct IPP printers with url (string) and optional name (string). |
syncInterval |
Integer | Background sync interval in minutes (1–1440). |
- Open the Google Admin Console.
- Go to Devices > Chrome > Apps & extensions > Users & browsers.
- Select Cupsie.
- Under Policy for extensions, paste your JSON policy:
{
"cupsServers": {
"Value": [
"http://cups-server.internal:631"
]
},
"ippPrinters": {
"Value": [
{
"url": "http://10.0.1.54:631/ipp/print",
"name": "HQ 1st Floor Copier"
},
{
"url": "http://10.0.1.55:631/ipp/print",
"name": "HQ 2nd Floor Copier"
}
]
},
"syncInterval": {
"Value": 1440
}
}For Linux managed workstations, save a policy file to /etc/opt/chrome/policies/managed/cupsie_policy.json. Force-installing the extension automatically grants required host access permissions without user prompts:
{
"ExtensionSettings": {
"dekecaodhfljnecmmkenlmjfcbmdokno": {
"installation_mode": "force_installed",
"update_url": "https://clients2.google.com/service/update2/crx",
"runtime_allowed_hosts": [
"<all_urls>"
]
}
},
"3rdparty": {
"extensions": {
"dekecaodhfljnecmmkenlmjfcbmdokno": {
"cupsServers": [
"http://cups-server.internal:631"
],
"ippPrinters": [
{
"url": "http://10.0.1.54:631/ipp/print",
"name": "HQ 1st Floor Copier"
},
{
"url": "http://10.0.1.55:631/ipp/print",
"name": "HQ 2nd Floor Copier"
}
],
"syncInterval": 1440
}
}
}
}By default, the extension has access to nothing and does not send any data to external servers. It will request network permission directly from you when adding printers.
For more details, see the full Privacy Policy.