chrome.contextMenus.create({ title: "Open frame in new tab", onclick: function(info, tab){ chrome.tabs.create({ url: info.frameUrl || info.pageUrl, index: tab.index + 1, selected: true }); } });
转自:https://www.cnblogs.com/sohighthesky/archive/2011/04/14/open-frame-in-new-tab.html
标签:info,插件,tabid,chrome,frame,右键,tab From: https://www.cnblogs.com/dreamman/p/17088443.html