-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.js
executable file
·45 lines (43 loc) · 1.27 KB
/
actions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
var tabid;
// Send to the edit page capturing the visible part of the current tab + passing the current URL
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.query(
{ active: true, windowId: chrome.windows.WINDOW_ID_CURRENT },
function(tabs) {
var currentUrl = tabs[0].url;
chrome.tabs.captureVisibleTab(
chrome.windows.WINDOW_ID_CURRENT,
{ format: "png" },
function(image) {
chrome.tabs.create({ url: "edit.html" }, function(t) {
tabid = t.id;
// Slight delay to allow tab time to add listener.
setTimeout(function() {
chrome.tabs.sendMessage(tabid, {
image: image,
url: currentUrl
});
}, 1000);
});
}
);
}
);
});
// This time capture only the visible part of the edit page
chrome.extension.onMessage.addListener(function(e) {
chrome.tabs.query(
{ active: true, windowId: chrome.windows.WINDOW_ID_CURRENT },
function(tabs) {
chrome.tabs.captureVisibleTab(
chrome.windows.WINDOW_ID_CURRENT,
{ format: "png" },
function(image) {
chrome.tabs.sendMessage(tabid, {
image: image
});
}
);
}
);
});