“ekstensi chrome dapatkan tab saat ini” Kode Jawaban

ekstensi chrome mendapatkan url tab saat ini

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

Dapatkan tab saat ini dari pengembang ekstensi 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

ekstensi chrome dapatkan tab saat ini

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

Jawaban yang mirip dengan “ekstensi chrome dapatkan tab saat ini”

Pertanyaan yang mirip dengan “ekstensi chrome dapatkan tab saat ini”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya