Send XHR request from Chrome extension with cookies

后端 未结 1 1332
春和景丽
春和景丽 2021-01-04 23:59

I\'m trying to send an XHR request from a Google Chrome extension to another domain. This would work fine, but I need to send that domains cookies with the request. Any way

相关标签:
1条回答
  • 2021-01-05 00:36

    Make sure the manifest.json permissions are setup properly.

    You have to properly set the cross site domain request permission in the manifest.json of your chrome extension. When done properly, the cookies who are already set for the targeted domain will be sent along with the request you are making to that domain. manifest.json documentation

    You have to be especially careful when playing with localhost:port_number. You will need to specify that domain in full in the manifest.json for it to work. I ended up with awkward behaviors when my localhost domain was NOT specify in full.

    This is how you want to specify your localhost domain in the manifest.json of your extension (if that makes sense):

    ...
    "permissions": [
        "http://localhost:3000/"
      ],
    ...
    

    If the cookies you want to send to the targeted domain are not set yet, you can do so my using the chrome.cookies.set method and specify the domain name you want through the object domain attribute you pass to the set method. The documentation is here: chrome.cookies.set.

    0 讨论(0)
提交回复
热议问题