8
chrome.tabs.query({
active: true,
currentWindow: true
},
function (tabs) {
chrome.tabs.captureVisibleTab(null
,{ format: "png"},
function (src) {
$('body').append("<img src='" + src + "'>" + tabs[0].url + "</img>");//appends captured image to the popup.html
}
);
});
此代碼會將捕獲的圖像附加到popup.html的正文中。但我想要的是將圖像附加到彈出的主體,我想用chrome.tabs.create({url:「newtab.html」)打開新標籤,並將捕獲的圖像追加到這個newtab.html。 'newtab.html'已經在路徑文件夾中)。Chrome瀏覽器擴展程序 - 在新標籤頁中打開捕獲的屏幕截圖
在此先感謝