Upload your custom Chrome extensions to Hyperbeam virtual computers 👏
Here's a guide on making a simple "Hello Extensions" extension.
In this example, we'll be loading the "Hello Extensions" extension in the Hyperbeam virtual computer — all the extension code can be found in the extension/ folder.
// Server
// Create a form data object with the extension zip file
const formData = new FormData();
formData.append("ex", fs.createReadStream("./extension.zip"));
formData.append("body", JSON.stringify(vmConfig));
// Add authorization headers
const headers = formData.getHeaders();
headers["Authorization"] = `Bearer ${process.env.HB_API_KEY}`;
// Send a POST request to the Hyperbeam API with the form data
const response = await post("https://engine.hyperbeam.com/v0/vm", formData, {
headers,
});
- Use
npm install
to install the dependencies altogether and navigate to the examples you want to run for more information. - Set your API key by running the following command in your terminal:
# Linux/macOS
export HB_API_KEY=your_api_key
# Windows
set HB_API_KEY=your_api_key
Replace your_api_key
with your API key from the Hyperbeam dashboard.
-
Run
npm run start
, a server should be listening on port 8080. -
Visit http://localhost:8080. You should see the "Hello Extensions" extension pinned in Chrome.
Have you modified the extension code and want to run your modified extension? First, terminate the server by pressing CTRL+C. After that, run the following commands:
npm run build
npm run start
Then, visit http://localhost:8080.
Alternatively, run npm run script
to run script.sh
, which starts a virtual computer with the Chrome extension using curl
.
Send us an email at founders@hyperbeam.com or join our community Discord server.