UNPKG

@reclaimprotocol/browser-extension-sdk

Version:

This guide will walk you through integrating the Reclaim Protocol Browser Extension SDK into your own browser extension or web application. It covers installation, manifest configuration, background initialization, content script setup, and how to trigg

16 lines (15 loc) 483 B
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Reclaim Offscreen Document</title> <script defer src="./offscreen.bundle.js"></script> </head> <body> <div id="offscreen-container"> <!-- This document is used for proof generation operations that require DOM access --> </div> <!-- Let webpack inject the script automatically --> </body> </html>