我正在基于这个资源小工具为应用程序市场开发一个谷歌上下文小工具。我已经启用了所有必要的API,在配置Apps Marketplace并将上下文小工具提取器设置为google.com:HelloWorld之后,可以在邮件中看到主题和正文中包含"Hello“的小工具。
问题是,其他提取器中没有一个会出现这个小工具。我尝试过不同的组合,提取Urls,仿射和范围。这个小工具不会出现在电子邮件中。
test.xml的内容
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="MessageID" description="" height="20" author="personal" author_email="..." author_location="local">
<Require feature="dynamic-height"/>
<Require feature="google.contentmatch">
<Param name="extractors">
google.com:MessageIDExtractor
</Param>
</Require>
</ModulePrefs>
<Content type="html" view="card">
<![CDATA[
<script type="text/javascript">
document.body.appendChild(document.createTextNode("messageId test"));
</script>
]]>
</Content>
</Module>谢谢。
发布于 2016-04-29 13:09:26
我做了其他提取器,试着遵循这样的模式:小工具设置
支持Extractor param name:from_email、to_email、cc_email、bcc_email、date_sent、date_received、subject、body、id、list_id、list_unsubscribe
https://stackoverflow.com/questions/34855291
复制相似问题