mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-23 17:52:52 +02:00
4 lines
139 B
JavaScript
4 lines
139 B
JavaScript
addon.port.on("got-user-data", results => {
|
|
document.querySelector("#panel-content").textContent = JSON.stringify(results, null, 2);
|
|
});
|