“rozszerzenie Chrome Uzyskaj bieżącą kartę” Kod odpowiedzi

rozszerzenie Chrome Uzyskaj bieżący adres URL TAB

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

Uzyskaj bieżącą kartę od dewelopera Chrome Extension

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

rozszerzenie Chrome Uzyskaj bieżącą kartę

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

Odpowiedzi podobne do “rozszerzenie Chrome Uzyskaj bieżącą kartę”

Pytania podobne do “rozszerzenie Chrome Uzyskaj bieżącą kartę”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu