2

我在通过弹出脚本中的 chrome 扩展处理 cookie 时遇到了一些麻烦。

popup.js 内容:

document.addEventListener('DOMContentLoaded', () => {
    function cookieinfo() {
        chrome.cookies.getAll({url: 'http://localhost:8080'}, function(cookie) {
            console.log('Found cookie: ', cookie)
            if (cookie == null)
                return;

            fetch('http://localhost:8080', {credentials: 'include'}).then((response) => {
                // do some stuff
                return response;
            });
        });
    }
    window.onload=cookieinfo;
}, false);

我执行的步骤:

  1. 在本地主机上登录我的应用程序(所以我得到了 cookie)
  2. 打开弹出窗口(因此 popup.js 被执行)
  3. 我在控制台日志中看到 chrome 找到了必要的 cookie
  4. 服务器说传入请求的 cookie 为空
  5. 我刷新本地主机应用程序的页面
  6. 我现在退出

也许有人知道我做错了什么?

编辑:

看来原因是我的cookie有参数HttpOnly=trueSameSite=Lax相关链接)。我可以在服务器日志中看到另一个 cookie。但是由于这个线程credentials,如果参数设置为,所有的 cookie 都会被发送include,即使是 httpOnly cookie。我也尝试将它发送到 127.0.0.1 而不是 localhost 由于这个答案具有相同的结果。

我不能设置httpOnly为假。这是框架强制的。有人知道如何解决吗?

编辑2:

我终于安装了Cookie编辑器,发现SameSite=Lax是这个原因。如果我将其设置为,No Restriction那么我将在服务器端看到它。不幸的是,我使用的框架只允许LaxStrict选项(Chrome 扩展都失败了)。有谁知道如何从 Chrome 扩展发送 Lax cookie?

4

3 回答 3

5

这是 Chromium 77 版之前的扩展问题。当跨站点 cookie 设置为SameSite=LaxSameSite=Strict时,cookie 不会随跨站点请求一起发送。

这已在所有平台的版本 78 中得到修复。现在 chrome 扩展在SameSite=Lax或时发送 cookie SameSite=Strict

参考:

https://bugs.chromium.org/p/chromium/issues/detail?id=1007973

https://chromium-review.googlesource.com/c/chromium/src/+/1827503

https://bugs.chromium.org/p/chromium/issues/detail?id=617198

于 2019-11-05T07:27:55.987 回答
1

我发现 cookiepath是至关重要的。任何不匹配都会导致误导行为。

这是我的设置:

  • 后端服务器运行在localhost:8081
  • chrome manifest 权限有"http://localhost:8081/"
  • 后端返回 cookie path=/,例如。这是一个示例响应标头Set-Cookie: refresh_token=bar; Path=/; SameSite=Lax; HttpOnly
  • chrome扩展可以手动查询cookie:chrome.cookies.get({ url: 'http://localhost:8081/', name: 'refresh_token' }...
  • 当您发送到 下的其他 url 路径时,chrome 扩展程序会自动附加 cookie localhost:8081,例如:
    fetch('http://localhost:8081/v1/meh').then((response) => {
        console.log(response);
    })
    
    服务器端将看到refresh_tokencookie。

总结一下:在 path 设置的 cookie/a不会被发送到 path 的 url /b;在 path 设置的 cookie/将被发送到同一域下的所有 url。

于 2020-12-20T22:38:00.507 回答
0

内容脚本是 100% 的解决方案。

您基本上有两个单独的浏览器,常规浏览器和扩展弹出浏览器。但它们是完全独立的,只能来回发送消息。所以你需要做的是让扩展上下文向浏览器上下文发送一条消息,指示该上下文中的一些代码获取document.cookies并将它们发送回扩展上下文。

这是我从每个单独的浏览器上下文中获取 cookie 的示例。

清单.json

{
  "manifest_version": 2,
  "name": "Cookie Monster",
  "description": "Nom nom nom nom",
  "version": "1.0",
  "browser_action": {
    "default_popup": "html/extension.html",
    "default_title":"Cookie Monster"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*"
 ],
  "content_scripts": [{
    "js":["/js/client.js"],
    "matches":["http://*/*","https://*/*"]
  }]
}

扩展名.html

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>Cookies</title>
    <style>
      body {
        display: block; 
        min-height: 250px; 
        width: 250px; 
        padding: 5px; 
      }
      button {
        display: block; 
        margin: 0 0 10px 0; 
      }
    </style>
  </head>
  <body class="container">
    <h1>Cookies</h1>
    <button id="extension_cookies" type="button">Get PopUp Cookies</button>
    <button id="browser_cookies" type="button">Get Browser Cookies</button>
    <p id="result"></p>

    <script src="/js/extension.js" type="text/javascript"></script>
  </body>
</html>

扩展.js

'use strict';
(function(){
    // cache import DOM elements
    const extension_btn = document.querySelector('#extension_cookies');
    const browser_btn = document.querySelector('#browser_cookies'); 
    const result = document.querySelector('#result');


    // runs in the popup window of the extension, 
    // which is it's own browser context 
    // and has it's own set of cookies
    extension_btn.addEventListener('click', () => {
        if (document.cookie === ''){
            result.innerText = 'No Cookies...';
        } else {
            result.innerText = document.cookie;
        }
    })

    // send message to browser context
    // message will inform browser client of what to do
    // the browser then needs to pass data to the callback function
    // then we can display results
    browser_btn.addEventListener('click', () => {
        chrome.tabs.query({active: true, currentWindow: true}, (tabs) => {
            chrome.tabs.sendMessage(tabs[0].id, {message: 'GET_COOKIES'}, (data) => {
                result.innerText = data.cookies
            });
        });
    })
}());

客户端.js

'use strict';
(function(){

  // receive a callback function so I can pass data to extension
  // get document cookies, put into an object
  // use callback to send response to extension
  const get_browser_cookies = (sendResponse) => {
    const cookies = document.cookie; 
    console.clear(); 
    console.log(cookies);
    sendResponse({ cookies: cookies }); 
  }


  // listen for messages from extension
  // a switch statement can help run only the correct function
  // must pass the function a reference to the sendResponse function
  // so I can pass data back to extension
  chrome.runtime.onMessage.addListener(function(data_from_extension, sender, sendResponse){
    switch (data_from_extension.message){
      case 'GET_COOKIES': {
        get_browser_cookies(sendResponse); 
        break; 
      }
      default: null; 
    }
  });
}())
于 2018-08-09T14:09:33.717 回答