UNDER DEVELOPMENT
MARKETPLACE
The Marketplace extension adds an extension marketplace directly in Roam to browse and install new extensions! The name of the script is marketplace
.
Installation
You could use the Copy Extension button below to individually install this extension. To install, just paste anywhere in your Roam graph and click "Yes, I Know What I'm Doing".
Manual Installation
If instead you prefer to manually install, first create a block with the text {{[[roam/js]]}}
on any page in your Roam DB. Then, copy and paste this code block as a child of the block.
var existing = document.getElementById("marketplace");
if (!existing) {
var extension = document.createElement("script");
extension.src = "https://roamjs.com/marketplace.js";
extension.id = "marketplace";
extension.async = true;
extension.type = "text/javascript";
document.getElementsByTagName("head")[0].appendChild(extension);
}