Installing the Add-In
1. Download the manifest
Browser: right-click the link → Save link as… → save as
manifest.xml.PowerShell (Windows):
Invoke-WebRequest -Uri "https://ms-word-addin.theblockbrain.ai/manifest.xml" -OutFile ".\manifest.xml"curl (macOS / Linux / WSL):
curl -L -o manifest.xml "https://ms-word-addin.theblockbrain.ai/manifest.xml"2. Installation Method
Quick install (user) - Word Desktop / Word Online / Word for Mac
Open Word and a document.
Go to Insert > Add-ins > Get Add-ins (the "Office Add-ins" dialog opens).

Select My Add-ins.

Click Upload My Add-in → choose one of:
Add from file → browse and select the downloaded
manifest.xml.Add from URL → paste:
https://ms-word-addin.theblockbrain.ai/manifest.xml.
Confirm any permission/trust prompts.
Launch the add-in via Insert > Add-ins > My Add-ins (or the new ribbon button/task pane).
Admin deployment - Microsoft 365 (Centralized deployment)
Sign in as a Global admin at https://admin.microsoft.com.
Search for Add-ins / Integrated apps (or find Settings → Integrated apps / Add-ins).
Choose Deploy Add-in (or Upload add-in) → upload
manifest.xmlor provide the manifest URL.Assign to users/groups or the whole organization → complete deployment.
Note: rollout may take minutes to several hours for all users.
Tenant SharePoint App Catalog (alternate org deployment)
Upload
manifest.xmlto the tenant App Catalog (Apps for Office).Users find the add-in under Insert > Add-ins > My Add-ins > My Organization.
3. Verify & Open the add-in
Open Word → Insert > Add-ins > My Add-ins → select the add-in.
Expected result: add-in opens in a task pane or appears on the ribbon per manifest.
4. Update / Uninstall
Update: re-upload updated manifest (user-side remove + add or replace via admin center).
Uninstall (user): Insert > Add-ins > My Add-ins → find the add-in → remove/uninstall.
Troubleshooting (common issues)
“Upload My Add-in” not visible — ensure modern Office (Microsoft 365 / Office 2016+); use Word Online as fallback.
Manifest download blocked — try PowerShell/curl or check network proxies.
Add-in not listed after deploy — sign out/sign in, wait for propagation, confirm assignment in admin center.
Add-in fails to load — check manifest validity, HTTPS accessibility of resources, and browser/devtools console for errors.
Permissions prompt — verify the manifest's requested permissions and accept if expected.
Requirements & notes
Supported clients: Word for Microsoft 365 (Windows / Mac), Word Online; some legacy Office builds may not support custom add-ins.
Manifest and web endpoints must be served over HTTPS with valid certificates.
If you need the manifest validated, run it through an XML linter or the Office Add-in validator before deployment.
Last updated