-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage_wastificator.user.js
71 lines (55 loc) · 1.38 KB
/
page_wastificator.user.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
// ==UserScript==
// @name PageWastificator
// @namespace ru.recursivepie.pagewastificator
// @require https://raw.githubusercontent.com/RecursivePie/Wastificator/master/styles.js
// @include *
// @version 0.1.3
// @grant none
//
// @author RecursivePie ([email protected])
// ==/UserScript==
var style = styles["sa_caps"];
//var style = styles["ps1"];
var observer;
function kek(str) {
return style.getWastified(str);
}
function wastifyNode(node) {
if(node.nodeName == "#text") {
el.nodeValue = style.getWastified(el.nodeValue);
}
}
function see(el) {
if (el.nodeName.toUpperCase() === 'TEXTAREA'
|| el.contentEditable === 'true') {
return;
}
if (el.nodeName == "#text") {
el.nodeValue = kek(el.nodeValue);
return;
}
var children = el.childNodes;
for (var i = 0; i < children.length; i++) {
see(children[i]);
}
}
function main() {
// var sideBar = document.getElementById("side_bar");
// var topLinks = document.getElementById("top_links");
// see(document);
// // see(topLinks);
see(document);
observer = new MutationObserver(function(mutations) {
console.log("MUTATION");
mutations.addedNodes.forEach(wastifyNode);
});
console.log("Made observer");
var config = {
attributes : true,
childList : true,
characterData : true
}
observer.observe(document, config);
console.log("Starting observing");
}
main();