-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
28 lines (25 loc) · 863 Bytes
/
content.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
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.action === "fetchQuestionDetails") {
try {
const frontendTitle = document.querySelector(
"div > div > div.flex.items-start.justify-between.gap-4 > div > div > a"
).textContent;
let arr = frontendTitle.split(".");
let difficulty = document.querySelector(".text-difficulty-easy")
? "Easy"
: document.querySelector(".text-difficulty-medium")
? "Medium"
: "Hard";
const questionDetails = {
questionId: arr[0],
title: arr[1].trim(),
difficulty: difficulty,
};
sendResponse(questionDetails);
} catch (error) {
console.warn("While getting content: ", error);
sendResponse({ title: "0", questionId: 0, difficulty: "Easy" });
}
}
return true;
});