mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
* Add WebGPU extension functional sample * Fix lint issues * Add warning support * Update functional-samples/sample.webgpu/manifest.json Co-authored-by: Joe Medley <jmedley@google.com> * Update functional-samples/sample.webgpu/README.md Co-authored-by: Joe Medley <jmedley@google.com> --------- Co-authored-by: Joe Medley <jmedley@google.com>
13 lines
305 B
JSON
13 lines
305 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"
|
|
}
|
|
}
|