-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
59 lines (50 loc) · 1.3 KB
/
main.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var currentWindow;
chrome.commands.onCommand.addListener(function(command) {
if (command !== 'generate_qr_code') return;
chrome.tabs.executeScript({
code: 'window.getSelection().toString();'
}, function(result) {
if (result && result[0]) {
renderCode(result[0]);
return;
}
chrome.tabs.query({ active: true }, function(tabs) {
if (tabs.length) renderCode(tabs[0].url);
});
});
});
chrome.contextMenus.create({
title: 'Generate QR Code',
id: 'simpleQrCodeG',
contexts: ['all']
});
chrome.contextMenus.onClicked.addListener(function (req) {
if (req.menuItemId !== 'simpleQrCodeG') return;
renderCode(req.selectionText || req.linkUrl || req.pageUrl);
});
chrome.windows.onRemoved.addListener(function (windowId) {
if (currentWindow && windowId === currentWindow.id) {
currentWindow = null;
}
});
function renderCode(text) {
var options = {
type: 'popup',
width: 300,
height: 380,
focused: true,
url: 'render.html'
};
if (currentWindow) {
chrome.windows.update(currentWindow.id, { focused: true }, sendMessage);
} else {
chrome.windows.create(options, sendMessage);
}
function sendMessage(newWindow) {
currentWindow = newWindow;
chrome.runtime.sendMessage({
method: 'renderText',
text: text
});
}
}