mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* Add wasm sample * Add README * Fix indent in README * Add a sample that doesn't use module to import wasm * fix: added new line at the end of files * Removed sample with format marco & extra space * No more extern crate * Sync changes * Added new line at the end of files * Update output * Update footnotes * Removed reference for unpacked extension * Used new README template * Update dependencies * Update build artifacts * fix: typo * Update files with latest version of rustc --------- Co-authored-by: Oliver Dunk <oliverdunk@google.com>
1021 B
1021 B
Using WASM in Manifest V3
This recipe shows how to use WASM in Manifest V3.
To load WASM in Manifest V3, we need to use the wasm-unsafe-eval CSP directive (Content Security Policy).
Overview
Running this extension
- Clone this repository.
- Load this directory in Chrome as an unpacked extension.
- Find the extension named "WASM Load Example - Helloworld (no-modules)" and inspect the service worker.
You will see the following output:
[from wasm] Inited.
[from wasm] Hello World!
[from wasm] Hello John
Build WASM locally
We have already built the WASM file for you. If you want to build it yourself, follow the steps below.