mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-31 14:09:58 +07:00
* migrate chrome.printing api sample from v2 to v3 manifest * Restore MV2 printing sample. --------- Co-authored-by: Oliver Dunk <oliverdunk@google.com>
19 lines
408 B
JSON
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
|
|
}
|