I’m working on creating a custom Gmail extension widget but it’s not showing up in my Gmail interface. I’ve created the widget.xml file following all the documentation guidelines. The docs mention creating a manifest file, but from what I understand, this isn’t needed anymore since we can use the Google Apps Marketplace SDK instead.
I’ve set up everything through the console.developers.google.com and enabled all the necessary settings, but my widget still doesn’t appear in Gmail. This has been frustrating me for weeks now.
Here’s my widget.xml configuration:
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs author="Tech Solutions" height="400" author_email="[email protected]" author_location="USA">
<Require feature="dynamic-height"/>
<Require feature="views" />
<Require feature="google.contentmatch">
<Param name="extractors">google.com:MessageIDExtractor</Param>
<Param name="extractors">google.com:SenderEmailExtractor</Param>
</Require>
</ModulePrefs>
<Content type="html" view="card">
<![CDATA[
<div>Custom Email Integration Tool</div>
<script>console.log('Widget loaded successfully')</script>
]]
></Content>
</Module>
Can anyone experienced with Gmail widget development help me figure out what might be wrong?