Chrome Extension oAuth Request Redirect Page Not Loading

前端 未结 2 1585
执笔经年
执笔经年 2021-02-10 03:12

I\'m working on a Chrome Extension that interacts with Google Calendar. I\'ve open sourced it, and the code can be found on GitHub: https://github.com/joshholat/Add-to-Calendar-

2条回答
  •  甜味超标
    2021-02-10 03:21

    I got it working after adding the following permissions to manifest.json

    "permissions": [
      "tabs",
      "https://www.google.com/"
    ],
    

提交回复
热议问题