Files
rayxu-google 299f2134cb Migrate chrome.printing api sample from v2 to v3 manifest (#829)
* migrate chrome.printing api sample from v2 to v3 manifest

* Restore MV2 printing sample.

---------

Co-authored-by: Oliver Dunk <oliverdunk@google.com>
2023-02-16 10:39:52 +00:00

19 lines
408 B
JSON

{
"name": "Print Extension",
"version": "1.0",
"description": "Sends print job directly to the printers installed on the Chromebook",
"permissions": [
"printing"
],
"action": {
"default_popup": "printers.html",
"default_icon": "icons/icon.png"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"manifest_version": 3
}