chrome extension get current tab url

Solutions on MaxInterview for chrome extension get current tab url by the best coders in the world

showing results for - "chrome extension get current tab url"
Joshua
06 Feb 2018
1chrome.tabs.query({currentWindow: true, active: true}, function(tabs){
2    console.log(tabs[0].url);
3});
4