Google Places API-无法在Chrome扩展程序中正确加载

时间:2019-01-11 01:51:07

标签: google-chrome google-chrome-extension

我正在尝试在Chrome扩展程序中使用Google Places API。

我正在成功加载Places脚本(通过script标签),到那时,我可以看到定义了window.google.maps.places

在评估脚本之后不久,它似乎正在加载以下脚本:https://maps.googleapis.com/maps-api-v3/api/js/35/7/places_impl.js

一旦发生这种情况,我会在控制台中收到以下错误:

enter image description here

该脚本似乎试图再次访问window.google.maps,但突然不存在。

这是我的permissions中的manifest.json部分:

    "permissions": [
        "contextMenus",
        "identity",
        "storage",
        "https://*.googleapis.com/*"
    ],

有什么建议吗?

0 个答案:

没有答案