У меня есть файл содержимого file.js, который создает переменную "found".Я хочу отправить значения переменной "найдено" в текстовое поле в popup.html
В файле file.js (я знаю, что переменная найдена работает, проверено с помощью предупреждения).
chrome.extension.sendRequest({foundlinks: found}, function(response) {
console.log(response);
});
В Popup.html:
function pulllinks(){
chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
document.getElementById("box").value = request.foundlinks;
sendResponse({});
});
И в форме в popup.html:
<input type = "button" onclick="pulllinks();" name = "box" id="box" value = "Grab Links From Page" />
Однако ничего не происходит.Есть идеи?
Спасибо!