-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
36 lines (32 loc) · 1.13 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
MutationObserver = window.MutationObserver || window.WebKitMutationObserver
const observer = new MutationObserver(function(mutations, observer) {
mutations.forEach(mutation => {
mutation.addedNodes.forEach(mutationNode => {
rpl = node => {
if (node.nodeType === 3) {
const text = node.nodeValue
const replacedText = text.replace(/inancial(\s|-)Analyst/gmi, "ucking clown")
if (replacedText !== text) {
node.nodeValue=replacedText
}
} else
node.childNodes.forEach(rpl)
}
rpl(mutationNode)
})
})
})
observer.observe(document, {
subtree: true,
childList: true
})
for (let element of document.getElementsByTagName('*')) {
element.childNodes.forEach(node => {
if (node.nodeType === 3) {
const text = node.nodeValue
const replacedText = text.replace(/inancial(\s|-)Analyst/gmi, "ucking clown")
if (replacedText !== text)
node.nodeValue=replacedText
}
})
}