最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - chrome extension code to get current active tab url and detect any url update in it as well - Stack Overflow

programmeradmin5浏览0评论

I want to write a chrome extension which can get the URL of active tab. I want it to always display the current website the person is viewing on his active tab of the current active window. I use the following code in my background script:

chrome.tabs.onActivated.addListener( function(activeInfo){
    chrome.tabs.get(activeInfo.tabId, function(tab){
        y = tab.url;
        console.log("you are here: "+y);
    });
});

This code displays current urls fine whenever I change the active tab in browser. But If I change the active tab url manually by clicking or typing, it fails to register the new url and will only do so if we switch between tabs and e back to this tab. I want to detect both the cases. How should I change my code?

I want to write a chrome extension which can get the URL of active tab. I want it to always display the current website the person is viewing on his active tab of the current active window. I use the following code in my background script:

chrome.tabs.onActivated.addListener( function(activeInfo){
    chrome.tabs.get(activeInfo.tabId, function(tab){
        y = tab.url;
        console.log("you are here: "+y);
    });
});

This code displays current urls fine whenever I change the active tab in browser. But If I change the active tab url manually by clicking or typing, it fails to register the new url and will only do so if we switch between tabs and e back to this tab. I want to detect both the cases. How should I change my code?

Share Improve this question edited Feb 22, 2019 at 6:59 Dreaded Harvester asked Feb 22, 2019 at 6:51 Dreaded HarvesterDreaded Harvester 1,5479 gold badges26 silver badges44 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13

Below is a script which takes care of both the cases:

chrome.tabs.onActivated.addListener( function(activeInfo){
    chrome.tabs.get(activeInfo.tabId, function(tab){
        y = tab.url;
        console.log("you are here: "+y);
    });
});

chrome.tabs.onUpdated.addListener((tabId, change, tab) => {
    if (tab.active && change.url) {
        console.log("you are here: "+change.url);           
    }
});

you should use the chrome.tabs.onUpdated.addListener api

const getActiveUrl = (tabid, changeInfo, tab) => {
  const url = changeInfo.url;

  // url is likely to be empty, and filter chrome:// and about:// URLs
  if (!url || ['chrome://', 'about://'].some(p => url.startsWith(p))) return;

  // filtering is not an active tab
  if (!tab.active) return;

  // the url address you need
  console.log(url);
}

chrome.tabs.onUpdated.addListener(getActiveUrl);

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论