-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
56 lines (50 loc) · 1.87 KB
/
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
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
(async function() {
const settings = await chrome.storage.sync.get("jiraBaseUrl");
const jiraBaseUrl = settings.jiraBaseUrl || "https://msmlnl.atlassian.net/browse/";
function linkifyJiraKeys(node) {
const issueKeyRegex = /\b([A-Z]+-\d+)\b/g;
if (!node || node.nodeType !== Node.ELEMENT_NODE) return;
const walker = document.createTreeWalker(node, NodeFilter.SHOW_TEXT, null);
let textNode;
while ((textNode = walker.nextNode())) {
const parent = textNode.parentNode;
if (parent && !parent.closest("a, textarea, input, style, script")) {
const replaced = textNode.nodeValue.replace(issueKeyRegex, match => {
return `<a href='${jiraBaseUrl}${match}' target='_blank' style='color:blue; text-decoration:underline;'>${match}</a>`;
});
if (replaced !== textNode.nodeValue) {
const span = document.createElement("span");
span.innerHTML = replaced;
parent.replaceChild(span, textNode);
}
}
}
}
function observePage() {
const observer = new MutationObserver(mutations => {
mutations.forEach(mutation => {
mutation.addedNodes.forEach(node => linkifyJiraKeys(node));
});
});
observer.observe(document.body, { childList: true, subtree: true });
}
function processGmail() {
function updateGmailView() {
document.querySelectorAll(".adn, .ha, .a3s, .ii, .gmail_message").forEach(linkifyJiraKeys);
}
const gmailObserver = new MutationObserver(updateGmailView);
gmailObserver.observe(document.body, { childList: true, subtree: true });
updateGmailView();
}
if (document.readyState === "complete") {
linkifyJiraKeys(document.body);
observePage();
processGmail();
} else {
window.addEventListener("load", () => {
linkifyJiraKeys(document.body);
observePage();
processGmail();
});
}
})();