如何发布Google Sheet插件

时间:2019-05-14 14:19:02

标签: google-sheets google-sheets-api

插件在Google工作表的get-addons列表(搜索)中不可见

我已经发布了一个Google表格插件。 还验证了oauth范围。 我的插件在chrome网站商店(https://chrome.google.com/webstore/detail/blockchain-for-sheet/gaajohppnkhndpfifhokefdeecgnbcih?hl=en&authuser=0上可见,但在Google表格get-addon搜索结果中看不到。

Google对我的查询的回复为:

该项目未显示在Google工作表的“获取加载项”菜单下的原因是,该项目是扩展程序。 请查看该项目的发布方式,因为它没有作为表格加载项发布。

manifest.json

{
  "manifest_version": 2,
  "name": "NAME",
  "version": "1.2.1",
  "description": "...",
  "icons": {
    "128":"logo_adOn.png"
  }
}

我已经更新了manifest.json

{
  "manifest_version": 2,
  "name": "name",
  "version": "2.1.0",
  "description": "...",
  "icons": {
    "128":"logo_adOn.png"
  },
  "timeZone": "Asia/Kolkata",
  "dependencies": {
    "enabledAdvancedServices": [{
      "userSymbol": "Sheets",
      "serviceId": "sheets",
      "version": "v4"
    }],
    "libraries": [{
      "userSymbol": "cCryptoGS",
      "libraryId": "1IEkpeS8hsMSVLRdCMprij996zG6ek9UvGwcCJao_hlDMlgbWWvJpONrs",
      "version": "4"
    }]
  },
  "exceptionLogging": "STACKDRIVER",
  "oauthScopes": ["https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/forms","https://www.googleapis.com/auth/script.external_request", "https://www.googleapis.com/auth/script.container.ui"],
  "urlFetchWhitelist": ["https://example.io/api/"],
  "sheet":{
    "name": "name"
  }
}

0 个答案:

没有答案