“Chrome Extension ContextMenus” Kode Jawaban

chrome.contextMenus

function getword(info,tab) {
  console.log("Word " + info.selectionText + " was clicked.");
  chrome.tabs.create({  
    url: "http://www.google.com/search?q=" + info.selectionText
  });
}
chrome.contextMenus.create({
  title: "Search: %s", 
  contexts:["selection"], 
  onclick: getword
});
aus ogola

Chrome Extension ContextMenus

chrome.runtime.onInstalled.addListener(function() {
    chrome.contextMenus.create({
        "title": 'Search Google for "%s"',
        "contexts": ["selection"],
        "id": "myContextMenuId"
    });
});
    
chrome.contextMenus.onClicked.addListener(function(info, tab) {
    chrome.tabs.create({  
        url: "http://www.google.com/search?q=" + encodeURIComponent(info.selectionText)
    });
})
aus ogola

Jawaban yang mirip dengan “Chrome Extension ContextMenus”

Pertanyaan yang mirip dengan “Chrome Extension ContextMenus”

Lebih banyak jawaban terkait untuk “Chrome Extension ContextMenus” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya