【发布时间】:2019-04-25 12:07:55
【问题描述】:
我正在尝试使用这个 background.js 获取 cookie 值
var myUrl = "https://cookiedomain.com/";
chrome.cookies.get({url: myUrl, name: 'email'}, function(cookie) {
var email = cookie.value;
chrome.runtime.sendMessage({ data: email });
});
chrome.cookies.get({url: myUrl, name: 'password'}, function(cookie) {
var password = cookie.value;
chrome.runtime.sendMessage({ data: password });
});
并获取电子邮件、密码作为 content.js 中的变量
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
var email = request.email;
var password = request.password;
});
....
document.getElementById('id').value = email;
document.getElementById('id1').value = password ;
但似乎不起作用,有人可以帮我吗?
谢谢大家。
【问题讨论】:
-
chrome.cookies.getAll()的结果是什么?
标签: javascript cookies google-chrome-extension