-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbackground.js
More file actions
80 lines (79 loc) · 2.17 KB
/
background.js
File metadata and controls
80 lines (79 loc) · 2.17 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// background.js
let isParsing = false
let pagesDone = 0
let totalPeople = 0
let totalPages = 0
chrome.runtime.onMessage.addListener((msg, sender, sendResponse) => {
if (msg.action === "startParse") {
isParsing = true
pagesDone = 0
totalPeople = 0
totalPages = Math.max(1, msg.to - msg.from + 1)
chrome.tabs.query({ active: true, currentWindow: true }).then(tabs => {
const tab = tabs[0]
if (!tab || !tab.id) return
if (tab.url && tab.url.match(/linkedin\.com\/search\/results\/people\//)) {
chrome.tabs.sendMessage(tab.id, {
action: "startParse",
from: msg.from,
to: msg.to,
postfix: msg.postfix,
delimiter: msg.delimiter,
firstNameChars: msg.firstNameChars,
lastNameChars: msg.lastNameChars,
swapNames: msg.swapNames
})
}
})
}
if (msg.action === "updateProgress") {
pagesDone = msg.pagesDone
chrome.runtime.sendMessage({
action: "broadcastProgress",
pagesDone,
totalPages
})
}
if (msg.action === "updatePeopleCount") {
totalPeople = msg.peopleCount
chrome.runtime.sendMessage({
action: "broadcastCount",
peopleCount: totalPeople
})
}
if (msg.action === "saveSearchHistory") {
chrome.storage.local.get({ searchHistory: [] }, data => {
const arr = data.searchHistory
arr.unshift(msg.data)
chrome.storage.local.set({ searchHistory: arr })
})
}
if (msg.action === "openHistory") {
chrome.tabs.create({ url: chrome.runtime.getURL("history.html") }).then(tab => {
if (tab && tab.id) {
chrome.tabs.update(tab.id, { active: true })
}
})
}
if (msg.action === "getParseState") {
sendResponse({
inProgress: isParsing,
pagesDone,
totalPeople,
totalPages
})
}
if (msg.action === "leakedinDone") {
isParsing = false
}
if (msg.action === "stopParse") {
isParsing = false
chrome.tabs.query({ active: true, currentWindow: true }).then(tabs => {
const tab = tabs[0]
if (tab && tab.id) {
chrome.tabs.sendMessage(tab.id, { action: "stopParse" }).catch(() => {})
}
})
}
return true
})