我从popup.js获取标签的标题:
chrome.tabs.query({url: '*://*.theverge.com/*'}, ([tab]) => {
document.querySelector('.info').textContent = tab.title;
});
但是我也想听选项卡标题的更改,以便每次选项卡更改时都显示一个新标题。所以我附上了它,但是没有用。
chrome.tabs.query({url: '*://*.theverge.com/*'}, ([tab]) => {
chrome.tabs.onUpdated.addListener(() => {
document.querySelector('.info').textContent = tab.title;
})
});
我的popup.html:
<html>
<body>
<span class="info">TAB TITLE</span>
<script src="popup.js"></script>
</body>
</html>