-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
683 lines (592 loc) · 28.6 KB
/
background.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
console.log("Background script loaded");
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
console.log("Message received:", message)
if (message.action === "scrapeProfile") {
console.log("Scraping profile");
// Check if sender.tab exists before accessing tab.id
if (!message.tabId) {
console.error("Tab ID not found. Message must be sent from a content script.");
return;
}
// Execute the scraping script in the context of the active tab
chrome.scripting.executeScript({
target: { tabId: message.tabId },
files: ['scrapeprofile/scraper.js']
}, () => {
// After loading the script, execute the scraping function
chrome.scripting.executeScript({
target: { tabId: message.tabId },
func: async () => {
// Add a small delay to ensure the page is fully loaded
await new Promise(resolve => setTimeout(resolve, 1000));
const result = await scrapeLinkedInProfile();
return result;
}
}, (results) => {
const profileData = results[0].result;
// Create an async function to handle the sequential flow
async function handleSkillsScraping() {
try {
const originalUrl = await loadSkillPage(message.tabId);
// Execute scrapeSkills in the context of the web page
const results = await chrome.scripting.executeScript({
target: { tabId: message.tabId },
func: scrapeSkills
});
const skills = results[0].result;
profileData.skills = skills;
chrome.tabs.update(message.tabId, { url: originalUrl });
sendResponse({ profileData: profileData, success: true });
} catch (error) {
console.error("Error during skills scraping:", error);
sendResponse({ profileData: profileData, success: false });
}
}
handleSkillsScraping();
return true; // Keep the message channel open
});
});
return true; // Keep the message channel open for async response
}
else if (message.action === "generateMessage") {
console.log("Generating message");
console.log(message);
async function handleMessageGeneration() {
try {
if (!message.ClientData || !message.RecipientData) {
console.error("Missing required profile data");
sendResponse({ success: false, error: "Missing profile data" });
return;
}
if (!message.apiKey) {
console.error("Missing API key");
sendResponse({ success: false, error: "API key not found" });
return;
}
const generatedMessage = await genMessage(message.ClientData, message.RecipientData, message.template, message.model || "gemini-1.5-flash", message.apiKey);
if (!generatedMessage) {
throw new Error("No message was generated");
}
sendResponse({ message: generatedMessage, success: true });
} catch (error) {
console.error("Error during message generation:", error);
sendResponse({ success: false, error: error.message });
}
}
handleMessageGeneration();
return true; // Keep the message channel open for async response
}
else if (message.action === "generateSummary") {
console.log("Generating summary");
async function handleSummaryGeneration() {
try {
if (!message.profileData || !message.ClientData) {
console.error("Missing required profile data");
sendResponse({ success: false, error: "Missing profile data" });
return;
}
if (!message.apiKey) {
console.error("Missing API key");
sendResponse({ success: false, error: "API key not found" });
return;
}
const generatedSummary = await generateSummary(
message.profileData,
message.model || "gemini-1.5-flash",
message.apiKey,
message.ClientData
);
sendResponse({ summary: generatedSummary, success: true });
} catch (error) {
console.error("Error during summary generation:", error);
sendResponse({ success: false, error: error.message });
}
}
handleSummaryGeneration();
return true; // Keep the message channel open for async response
}
else if (message.action === "OPEN_LINKEDIN") {
console.log("Opening LinkedIn");
chrome.tabs.create({ url: "https://www.linkedin.com/in/me/" }, (tab) => {
// Wait for the tab to finish loading
chrome.tabs.onUpdated.addListener(function listener(tabId, changeInfo) {
if (tabId === tab.id && changeInfo.status === 'complete') {
chrome.tabs.onUpdated.removeListener(listener);
// Now execute the scraping
chrome.scripting.executeScript({
target: { tabId: tab.id },
files: ['scrapeprofile/scraper.js']
}, () => {
chrome.scripting.executeScript({
target: { tabId: tab.id },
func: async () => {
await new Promise(resolve => setTimeout(resolve, 1000));
const result = await scrapeLinkedInProfile();
return result;
}
}, (results) => {
const profileData = results[0].result;
async function handleSkillsScraping() {
try {
await loadSkillPage(tab.id);
const results = await chrome.scripting.executeScript({
target: { tabId: tab.id },
func: scrapeSkills
});
const skills = results[0].result;
profileData.skills = skills;
// Close the LinkedIn tab
chrome.tabs.remove(tab.id);
// Send response with profile data
sendResponse({ profileData: profileData, success: true });
} catch (error) {
console.error("Error during skills scraping:", error);
sendResponse({ success: false });
}
}
handleSkillsScraping();
});
});
}
});
});
return true; // Keep the message channel open
}
else if (message.action === "UPDATE_PROFILE") {
console.log("Updating profile");
chrome.tabs.create({ url: message.profileUrl }, (tab) => {
chrome.tabs.onUpdated.addListener(function listener(tabId, changeInfo) {
if (tabId === tab.id && changeInfo.status === 'complete') {
chrome.tabs.onUpdated.removeListener(listener);
console.log("Profile URL loaded");
chrome.scripting.executeScript({
target: { tabId: tab.id },
files: ['scrapeprofile/scraper.js']
}, () => {
chrome.scripting.executeScript({
target: { tabId: tab.id },
func: async () => {
const result = await scrapeLinkedInProfile();
return result;
}
}, (results) => {
const profileData = results[0].result;
async function handleSkillsScraping() {
try {
const originalUrl = await loadSkillPage(tab.id);
const results = await chrome.scripting.executeScript({
target: { tabId: tab.id },
func: scrapeSkills
});
const skills = results[0].result;
profileData.skills = skills;
if (originalUrl) {
chrome.tabs.update(tab.id, { url: originalUrl });
}
sendResponse({ profileData: profileData, success: true });
} catch (error) {
console.error("Error during skills scraping:", error);
sendResponse({ profileData: profileData, success: false });
}
}
handleSkillsScraping();
});
});
}
});
});
return true; // Keep the message channel open
}
});
//Scrape skills
function loadSkillPage(tabId) {
return new Promise((resolve, reject) => {
chrome.tabs.get(tabId, (tab) => {
if (chrome.runtime.lastError) {
console.error("Error getting tab:", chrome.runtime.lastError);
reject(chrome.runtime.lastError);
return;
}
const originalUrl = tab.url;
if (originalUrl.includes("/details/skills/")) {
setTimeout(() => {
resolve(originalUrl);
}, 1500);
} else {
const skillsUrl = originalUrl + "/details/skills/";
chrome.tabs.update(tabId, { url: skillsUrl }, () => {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
return;
}
chrome.tabs.onUpdated.addListener(function listener(updatedTabId, changeInfo) {
if (updatedTabId === tabId && changeInfo.status === "complete") {
chrome.tabs.onUpdated.removeListener(listener);
console.log("Skills URL loaded");
setTimeout(() => {
resolve(originalUrl);
}, 1500);
}
});
});
}
});
});
}
async function scrapeSkills() {
const tempSkills = [];
// Remove the document null check since it will always be defined in the page context
const skillElements = document.querySelectorAll('[id^="profilePagedListComponent-"][id*="-SKILLS-VIEW-DETAILS-profileTabSection-ALL-SKILLS-NONE-en-US-"]');
skillElements.forEach((skillElement) => {
const skillText = skillElement.querySelector('span[aria-hidden="true"]')?.textContent?.trim();
const skillEndorsement = skillElement.querySelector('div.pvs-entity__sub-components span[aria-hidden="true"]')?.textContent?.trim();
if (skillText) {
tempSkills.push({
skill: skillText,
endorsement: skillEndorsement
});
}
});
return tempSkills;
}
//End of scrape skills
//Generate message
async function genMessage(ClientData, RecipientData, template, model, apiKey) {
if (!ClientData || !RecipientData || !template || !apiKey) {
throw new Error("Missing required data for message generation");
}
try {
const message = await callGemini(ClientData, RecipientData, template, model, apiKey);
if (!message) {
throw new Error("Failed to generate message content");
}
return message;
} catch (error) {
console.error("Error in genMessage:", error);
throw new Error(`Failed to generate message: ${error.message}`);
}
}
async function callGemini(ClientData, RecipientData, template, model, apiKey) {
console.log("Calling AI with model:", model);
let promptText;
if (typeof template === 'object' && template.content) {
// Template-based message
promptText = `
You are enhancing a template message for LinkedIn based on the following information:
CRITICAL CONSTRAINT:
- LinkedIn connection messages have a STRICT 300 CHARACTER LIMIT (not words, characters including spaces)
- Your response MUST be under 300 characters total
Rules:
- Keep the message professional but friendly
- Maintain the original template's structure and intent
- Personalize the message using the provided profile information
- Be extremely concise - every character counts
- Focus on 1-2 key connection points only
- Remove any unnecessary words or phrases
- Replace any placeholders with appropriate information
${template.content.includes('recruiter') || template.name?.includes('recruiter') ? `
SPECIAL INSTRUCTIONS FOR RECRUITER MESSAGE:
- Express genuine interest in the specific job or company
- Briefly mention 1-2 relevant qualifications that match the recruiter's focus
- Convey enthusiasm and eagerness for the opportunity
- Avoid generic phrases like "I'm interested in opportunities"
- Be specific about why you want THIS job/company
` : ''}
Template Content:
${template.content}
Client (Sender) Information:
- Name: ${ClientData.name || 'Not provided'}
- Headline: ${ClientData.headline || 'Not provided'}
- Current Role: ${ClientData.currentRole || 'Not provided'}
- Skills: ${ClientData.skills ? ClientData.skills.map(s => s.skill).join(', ') : 'Not provided'}
Recipient Information:
- Name: ${RecipientData.name || 'Not provided'}
- Headline: ${RecipientData.headline || 'Not provided'}
- Current Role: ${RecipientData.currentRole || 'Not provided'}
- Skills: ${RecipientData.skills ? RecipientData.skills.map(s => s.skill).join(', ') : 'Not provided'}
Example of good length (under 300 characters):
"Hi [Name], I noticed we both work in [industry]. I'm currently [brief role description] and would love to connect to share insights about [specific topic]. Thanks, [Your Name]"
Please enhance and personalize this template message while maintaining its original intent. Count your characters carefully before submitting.`;
} else {
// AI-generated message
promptText = `
You are writing a personalized LinkedIn connection message with a STRICT 300 CHARACTER LIMIT.
CRITICAL CONSTRAINTS:
- LinkedIn connection messages have a STRICT 300 CHARACTER LIMIT (not words, characters including spaces)
- Your response MUST be under 300 characters total
- Count every character including spaces and punctuation
Connection Type: ${template}
Rules for effective short messages:
- Start with a brief, personalized greeting
- Focus on ONE specific connection point (shared skill, industry, or interest)
- Include a clear reason for connecting
- End with a simple, friendly closing
- Remove any unnecessary words or phrases
- Avoid generic statements that waste characters
${template === 'message-to-recruiter' ? `
SPECIAL INSTRUCTIONS FOR RECRUITER MESSAGE:
- Express genuine interest in the specific job or company
- Briefly mention 1-2 relevant qualifications that match the recruiter's focus
- Convey enthusiasm and eagerness for the opportunity
- Avoid generic phrases like "I'm interested in opportunities"
- Be specific about why you want THIS job/company
` : ''}
Client (Sender) Information:
- Name: ${ClientData.name || 'Not provided'}
- Headline: ${ClientData.headline || 'Not provided'}
- Current Role: ${ClientData.currentRole || 'Not provided'}
- Skills: ${ClientData.skills ? ClientData.skills.map(s => s.skill).join(', ') : 'Not provided'}
Recipient Information:
- Name: ${RecipientData.name || 'Not provided'}
- Headline: ${RecipientData.headline || 'Not provided'}
- Current Role: ${RecipientData.currentRole || 'Not provided'}
- Skills: ${RecipientData.skills ? RecipientData.skills.map(s => s.skill).join(', ') : 'Not provided'}
Examples of good length (under 300 characters):
1. "Hi [Name], I noticed we both have experience in [specific skill]. I'm currently working on [brief project] and would love to connect to share insights. Thanks, [Your Name]"
2. "Hi [Name], I saw your work on [specific project/company]. As a fellow [industry] professional, I'd love to connect and learn more about your experience. Best, [Your Name]"
${template === 'message-to-recruiter' ? `
3. "Hi [Name], I'm excited about the [specific position] at [company]. My experience with [relevant skill] aligns perfectly with what you're seeking. I'd love to discuss how I can contribute to your team. Thanks, [Your Name]"
` : ''}
Write a personalized ${template} message from ${ClientData.name || 'the sender'} to ${RecipientData.name || 'the recipient'}.
Count your characters carefully before submitting.`;
}
try {
let url, requestBody;
let generatedMessage;
if (model.startsWith('gpt')) {
// ChatGPT API call
url = "https://api.openai.com/v1/chat/completions";
requestBody = JSON.stringify({
"model": model,
"messages": [
{
"role": "system",
"content": "You are a helpful assistant that creates personalized LinkedIn connection messages."
},
{
"role": "user",
"content": promptText
}
],
"temperature": 0.7,
"max_tokens": 1024
});
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${apiKey}`
},
body: requestBody
});
if (!response.ok) {
throw new Error(`API request failed with status ${response.status}`);
}
const data = await response.json();
if (!data.choices?.[0]?.message?.content) {
throw new Error("Invalid response format from ChatGPT API");
}
generatedMessage = data.choices[0].message.content;
} else {
// Gemini API call
url = "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=" + apiKey;
requestBody = JSON.stringify({
"contents": [{
"role": "user",
"parts": [{
"text": promptText
}]
}],
"generationConfig": {
"temperature": 0.7,
"topK": 40,
"topP": 0.95,
"maxOutputTokens": 1024,
"responseMimeType": "text/plain",
"stopSequences": ["\"\"\""]
}
});
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: requestBody
});
if (!response.ok) {
throw new Error(`API request failed with status ${response.status}`);
}
const data = await response.json();
console.log("Gemini response:", data);
if (!data.candidates?.[0]?.content?.parts?.[0]?.text) {
throw new Error("Invalid response format from Gemini API");
}
generatedMessage = data.candidates[0].content.parts[0].text;
}
// Validate and trim the message to ensure it's under 300 characters
generatedMessage = validateMessageLength(generatedMessage);
return generatedMessage;
} catch (error) {
console.error("Error in callGemini:", error);
throw new Error(`API call failed: ${error.message}`);
}
}
// Function to validate and ensure message is under 300 characters
function validateMessageLength(message) {
// Remove any markdown formatting that might have been added
let cleanMessage = message.replace(/\*\*/g, '').replace(/\*/g, '').replace(/\n/g, ' ').trim();
// If message is already under 300 characters, return it
if (cleanMessage.length <= 300) {
return cleanMessage;
}
// If message is over 300 characters, trim it and add ellipsis
console.warn(`Message exceeded 300 characters (${cleanMessage.length}). Trimming...`);
// Try to find a good breaking point (end of sentence or comma)
let breakPoint = cleanMessage.lastIndexOf('.', 296);
if (breakPoint === -1 || breakPoint < 250) {
breakPoint = cleanMessage.lastIndexOf(',', 296);
}
if (breakPoint === -1 || breakPoint < 250) {
breakPoint = cleanMessage.lastIndexOf(' ', 296);
}
if (breakPoint === -1 || breakPoint < 250) {
// If no good breaking point, just cut at 296 characters
breakPoint = 296;
}
return cleanMessage.substring(0, breakPoint).trim();
}
//End of generate message
async function generateSummary(profileData, model, apiKey, ClientData) {
if (!profileData || !apiKey) {
throw new Error("Missing required data for summary generation");
}
if (!ClientData) {
throw new Error("Client profile data is required for comparison");
}
// Check if the profile is likely a recruiter
const isRecruiter = profileData.headline?.toLowerCase().includes('recruit') ||
profileData.headline?.toLowerCase().includes('talent') ||
profileData.currentRole?.toLowerCase().includes('recruit') ||
profileData.currentRole?.toLowerCase().includes('talent');
const prompt = `
Analyze this LinkedIn profile in relation to the client's profile and create a bullet-point summary to help decide if they want to connect with this person.
IMPORTANT: Do not include any names in your summary.
Format your response in these exact sections with bullet points:
Current Role & Level:
• [Current position and seniority level]
• [Years of experience if available]
Key Skills & Expertise:
• [List 3-4 most relevant skills]
Notable Achievements:
• [List 1-2 standout achievements or experiences]
Connection Value:
• [1-2 points on why they might be a valuable connection based on shared interests/skills]
• [Any unique value they could bring to your network]
${isRecruiter ? `
Recruiter Insights:
• [What industries/roles they typically recruit for]
• [Companies they work with or represent]
• [How to best approach them for job opportunities]
` : ''}
Keep each bullet point concise and focus on what makes this person interesting as a potential connection.
Do not use any markdown formatting like asterisks or bold text.
Highlight any overlapping skills, industries, or experiences between the profiles.
Remember: Do not mention any names in the summary.
Client (Your) Profile Information:
- Name: ${ClientData.name}
- Headline: ${ClientData.headline}
- Current Role: ${ClientData.currentRole}
- Skills: ${ClientData.skills ? ClientData.skills.map(s => s.skill).join(', ') : 'Not provided'}
Target Profile Information:
- Name: ${profileData.name}
- Headline: ${profileData.headline}
- Current Role: ${profileData.currentRole}
- Location: ${profileData.location}
- About: ${profileData.about}
- Experience: ${JSON.stringify(profileData.experience)}
- Skills: ${profileData.skills ? profileData.skills.map(s => s.skill).join(', ') : 'Not provided'}
`;
try {
let url, requestBody;
if (model.startsWith('gpt')) {
// ChatGPT API call
url = "https://api.openai.com/v1/chat/completions";
requestBody = JSON.stringify({
"model": model,
"messages": [
{
"role": "system",
"content": "You are a helpful assistant that analyzes LinkedIn profiles."
},
{
"role": "user",
"content": prompt
}
],
"temperature": 0.7,
"max_tokens": 1024
});
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${apiKey}`
},
body: requestBody
});
if (!response.ok) {
throw new Error(`API request failed with status ${response.status}`);
}
const data = await response.json();
if (!data.choices?.[0]?.message?.content) {
throw new Error("Invalid response format from ChatGPT API");
}
return data.choices[0].message.content;
} else {
// Gemini API call
url = "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=" + apiKey;
requestBody = JSON.stringify({
"contents": [{
"parts": [{
"text": prompt
}]
}]
});
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: requestBody
});
if (!response.ok) {
throw new Error(`API request failed with status ${response.status}`);
}
const data = await response.json();
if (!data.candidates?.[0]?.content?.parts?.[0]?.text) {
throw new Error("Invalid response format from Gemini API");
}
return data.candidates[0].content.parts[0].text;
}
} catch (error) {
console.error("Error in generateSummary:", error);
throw new Error(`Failed to generate summary: ${error.message}`);
}
}
//End of generate summary
chrome.runtime.onInstalled.addListener((details) => {
if (details.reason === "install") {
// Open the website with welcome message and API key setup
chrome.tabs.create({
url: chrome.runtime.getURL("website/web.html?setup=true")
}, (tab) => {
// Show welcome message after the tab is created
setTimeout(() => {
chrome.tabs.sendMessage(tab.id, {
type: "SHOW_WELCOME_MESSAGE",
setup: true
});
}, 1000);
});
}
});