“Расширение Chrome Получите текущую вкладку” Ответ

Расширение Chrome Получите текущий URL -адрес вкладки

chrome.tabs.query({currentWindow: true, active: true}, function(tabs){
    console.log(tabs[0].url);
});
flexflower

Получить вкладку Current от разработчика расширения Chrome

chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs => {
    let url = tabs[0].url;
    // use `url` here inside the callback because it's asynchronous!
});
Horrible Herring

Расширение Chrome Получите текущую вкладку

chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
     // {active: true, currentWindow: true}: current tab of the active window
  	 // tabs parameter is an array holding objects providing access to url
     const activeTab = tabs[0];
     const activeTabId = activeTab.id; 
	 const activeTabURL = activeTab.url; 
     // do whatever you want with the above values
  });

// the following should be added to manifest.json for chrome extension
"permissions": [
        "tabs"
 ]
Wissam

Ответы похожие на “Расширение Chrome Получите текущую вкладку”

Вопросы похожие на “Расширение Chrome Получите текущую вкладку”

Смотреть популярные ответы по языку

Смотреть другие языки программирования