在此处的 Google Developers 页面上,它显示“扩展 Gmail 的 G Suite 插件在桌面和移动客户端上都可以这样做”。
我在此处链接的已发布附加组件位于市场上。它只是扩展 gmail(我在下面包含了我的清单文件)。但是,我的插件只出现在网络上。我无法让它显示在手机上。
我做错了什么还是有错误?为什么我发布的 Gmail 插件没有显示在移动 gmail 应用程序上?
谢谢你的帮助!
清单文件(appscript.json):
{
"timeZone": "GMT",
"dependencies": {
},
"gmail": {
"name": "Smarty",
"logoUrl": "https://images.squarespace-cdn.com/content/v1/5e55a48565fc4c78f503ac25/1586923750635-O2EA9H2ZLCH4B926L8T3/ke17ZwdGBToddI8pDm48kJK4Mm1kch8SFO9ZNkN1NT97gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z5QHyNOqBUUEtDDsRWrJLTmN9YSRtfoTLg6dUq-6F17A0FFZK5fArcnK1IqGweyunyWChwIwkIJ_P7MaZif-uMs/SmartyDescriptor.png",
"contextualTriggers": [{
"unconditional": {
},
"onTriggerFunction": "getContextualAddOn"
}],
"primaryColor": "#40c2ff",
"secondaryColor": "#e84f81"
},
"oauthScopes": [
"https://www.googleapis.com/auth/calendar",
"https://www.googleapis.com/auth/gmail.addons.execute",
"https://www.googleapis.com/auth/gmail.addons.current.message.readonly",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/script.external_request",
"https://www.google.com/m8/feeds"
],
"urlFetchWhitelist": [
"https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.js",
"https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.28/moment-timezone-with-data.js",
"https://api.wit.ai/"
],
"runtimeVersion": "V8"
}