有人可以协助。我使用 Gmail上下文小工具浪费了这么多时间。我正在尝试重新创建Contextual Gadget - Hello World Sample Code。
我已对manifest.xml
和gadget.xml
进行了必要的更改。但是,我正在努力使用manifest.json
文件。
我创建了以下manifest.json
文件,只会导致应用重定向到我的网站。
{
"manifest_version": 2,
"name": "Welcome to helloworld example",
"version": "0.0.0.5",
"description": "hello world test",
"icons": {
"128": "icons/128.png",
"16": "icons/16.png"
},
"container": ["DOMAIN_INSTALLABLE"],
"api_console_project_id": "XXXXXXXXXXX",
"app" : {
"launch" : {
"url" : "http://www.XXXXXXX.co.za/gadget.xml"
}
}
}