Я пытаюсь отправить массив всех ссылок на странице в мое расширение Chrome. Я собираю данные массива с помощью сценария содержимого и использую сообщения для отправки данных в расширение, к сожалению, после получения сообщения от сценария содержимого массив содержит неполные данные.
Я использую функцию sendMessage для вставки моего скрипта контента, этот скрипт затем собирает информацию о странице (URL страницы и ссылки на странице) и затем отправляет ее через сообщение.
Это сообщение затем получает слушатель в popup.js, а затем информация сохраняется в объекте, но, к сожалению, эта информация неполная.
//Manifest.json
{
"name": "PHD SEO Tools Test",
"version": "1.0",
"description": "SEO Tools Browser Extension First Draft",
"permissions": [
"tabs",
"activeTab",
"storage"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"manifest_version": 2
}
//ContentScript.js
//Store page information in an object
let pageInfo = {
currentPageURL: window.location.href,
links: []
}
//Grab all links on the page
links = document.getElementsByTagName("link");
//Grab URL for each link
for (i = 0; i < links.length; i++) {
//Push url to pageInfo object
pageInfo.links.push(links[i]);
}
//Send a message containing the pageInfo properties
chrome.runtime.sendMessage({
//To add data to the message payload add another property below
url: pageInfo.currentPageURL,
links: pageInfo.links
}, response => {
console.log(response);
})
//Popup.js
//Variable to store recieved messages
let pageInfo = {
currentPageURL: '',
links: []
}
//Variable to store popup UI components
let ui = {
popup: document.getElementById("main"),
displayUrlButton: document.getElementById("displayUrlButton"),
displayUrl: document.getElementById("displayUrl")
}
//Recieve message from background using the following notation:
//request.url
//request.links
chrome.runtime.onMessage.addListener(
(request, sender, sendResponse) => {
console.log(request)
pageInfo.currentPageURL = request.url;
pageInfo.links = request.links;
sendResponse({message: "info recieved by popup"});
}
);
ui.displayUrlButton.addEventListener('click', () => {
//If ui.displayUrl is empty
if(ui.displayUrl.childNodes.length < 2) {
//create a h2 element
let urlText = document.createElement("h2");
//set the content of the h2 element
urlText.innerHTML = "Current page: " + pageInfo.currentPageURL;
//Add h2 element to page
ui.displayUrl.appendChild(urlText);
}
})
function sendMessage() {
//Query tabs for the active tab in the current window
chrome.tabs.query({active: true, currentWindow: true}, tabs => {
//Execute a script on the active tab
chrome.tabs.executeScript(tabs[0].id, {file: 'contentScript.js'});
});
}
После вызова функции sendMessage () я ожидаю увидеть объект с URL-адресом страницы и массивом ссылок (весь элемент html в форме объекта, а не только href). Однако вывод, который я получаю, таков:
{url: "https://www.freecodecamp.org/news/", links: Array(8)}
links: Array(8)
0:
__proto__: Object
1: {}
2: {}
3: {}
4: {}
5: {}
6: {}
7: {}
length: 8
__proto__: Array(0)
url: "https://www.freecodecamp.org/news/"
__proto__: Object
Как вы можете видеть, URL передается из contentScript, а массив передается из contentScript во всплывающее окно, однако, к сожалению, массив полон пустых элементов.
Как я могу получить массив ссылок для отображения фактического содержимого, например:
(8) [link, link, link, link, link, link, link, link]
0: link
...
baseURI: "https://www.freecodecamp.org/news/"
href: "https://cdn.freecodecamp.org/news-assets/prism-1-16-
outerHTML: "<link rel="stylesheet" type="text/css" href="https://cdn.freecodecamp.org/news-assets/prism-1-16-
__proto__: HTMLLinkElement
...
1: link
2: link
3: link
4: link
5: link
6: link
7: link
length: 8
__proto__: Array(0)