我是Chrome扩展程序/自动下载的新手。我有一个背景页面,其中包含chrome.tabs.captureVisibleTab()
可见网页的屏幕截图。在我的弹出窗口中,我有:
chrome.tabs.captureVisibleTab(null, {}, function (image) {
// Here I want to automatically download the image
});
我以前用blob
做了类似的事情,但我完全不知道如何下载图片以及如何自动完成图片。
在实践中,我希望我的Chrome扩展程序能够在加载特定页面时自动截图+下载图像(我猜这必须通过让我的内容脚本与我的后台页面对话来实现,对吗?)< / p>
答案 0 :(得分:6)
是的,正如您所说,您可以使用Message Passing来完成它。通过内容脚本检测特定页面上的开关,然后与后台页面聊天以捕获该页面的屏幕截图。您的内容脚本应使用chrome.runtime.sendMessage
发送消息,后台页面应使用chrome.runtime.onMessage.addListener
收听:
我创建并测试的示例代码可以与我合作:
内容脚本(myscript.js):
chrome.runtime.sendMessage({greeting: "hello"}, function(response) {
});
<强> Background.js:强>
var screenshot = {
content : document.createElement("canvas"),
data : '',
init : function() {
this.initEvents();
},
saveScreenshot : function() {
var image = new Image();
image.onload = function() {
var canvas = screenshot.content;
canvas.width = image.width;
canvas.height = image.height;
var context = canvas.getContext("2d");
context.drawImage(image, 0, 0);
// save the image
var link = document.createElement('a');
link.download = "download.png";
link.href = screenshot.content.toDataURL();
link.click();
screenshot.data = '';
};
image.src = screenshot.data;
},
initEvents : function() {
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.greeting == "hello") {
chrome.tabs.captureVisibleTab(null, {format : "png"}, function(data) {
screenshot.data = data;
screenshot.saveScreenshot();
});
}
});
}
};
screenshot.init();
另请注意在清单文件中注册您的内容脚本的代码和权限:
"permissions": ["<all_urls>","tabs"],
"content_scripts": [
{
"matches": ["http://www.particularpageone.com/*", "http://www.particularpagetwo.com/*"],
"js": ["myscript.js"]
}
]
它会捕获屏幕截图并在加载特定页面时自动将图像下载为.png。干杯!