mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
13 lines
301 B
JSON
13 lines
301 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "WebGPU Extension",
|
|
"description": "Generate a red triangle with WebGPU in an extension service worker.",
|
|
"version": "1.0",
|
|
"action": {
|
|
"default_title": "Click to see a red triangle"
|
|
},
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
}
|
|
}
|