在卸载 chrome 打包应用时将用户带到 link

Take users to a link on uninstall chrome packaged app

我正在开发一个 chrome 打包的应用程序,并且正在尝试设置 url 以卸载该应用程序。到目前为止,我在应用程序的背景 Javascript(或主要)上有这一行:

chrome.runtime.setUninstallURL(goo.gl/forms/qo8OF2w9pLLyHloa2)

但是卸载后没有任何作用?任何帮助都会受到爱戴!这是我的脚本,也是完整的。

chrome.app.runtime.onLaunched.addListener(function() {
    chrome.app.window.create('popup.html', {
    'outerBounds': {
      'width': 640,
      'height': 692
    },
    "resizable": false,
    "frame": {
        color: "#ffffff"
    },
  });
});
chrome.runtime.onUpdateAvailable.addListener(function(details) {
  console.log("updating to version " + details.version);
  chrome.runtime.reload();
});

chrome.runtime.requestUpdateCheck(function(status) {
  if (status == "update_available") {
    chrome.runtime.reload();
  } else if (status == "no_update") {
    console.log("no update found");
  }
});

chrome.runtime.setUninstallURL(goo.gl/forms/qo8OF2w9pLLyHloa2)

这也是我的清单

{
"name": "Meme Music Board",
"short_name": "Meme Music Board",
"description": "All of your meme songs in one song board. 100+ Songs! You deserve it ;)",
"version":"2.6.4",
"manifest_version": 2,
"author": "Banana Man Development",
"offline_enabled": true,
"app": {
"background": {
  "scripts": ["background.js"]
    }
  },
"icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }
}

documentation中指出

This URL must have an http: or https: scheme.

尝试将 http:// 添加到 url 的前面,您应该可以开始了。

还要确保将 url 放在单引号中,这是该方法所要求的。