-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
167 lines (156 loc) · 3.72 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
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
const wordMap = {
'one': 'una',
'two': 'duey',
'three': 'dee',
'four': 'foosa',
'five': 'fife',
'six': 'seeks',
'seven': 'sevin',
'eight': 'ate-a',
'nine': 'ninee',
'ten': 'tenska',
'very': 'berry',
'superior': 'bombad',
'superb': 'bombad',
'great': 'bombad',
'landspeeder': 'dowopee',
'i am': 'mesa',
'i': 'mesa',
'me': 'mesa',
'my': 'mesa',
'much': 'mui',
'a lot': 'mui',
'mine': 'moole',
'thank you': 'tank yu',
'you are': 'yousa',
'you': 'yousa',
'did you': 'yousa',
'you\'re': 'yousa',
'money': 'mula',
'credits': 'mula',
'dollars': 'mula',
'your': 'yu', //also plural of you
'she is': 'shesa',
'did she': 'shesa',
'she': 'shesa',
'he is': 'hesa',
'did he': 'hesa',
'he': 'hesa',
'we': 'wesa',
'we are': 'wesa',
'did we': 'wesa',
'they are': 'daysa',
'did they': 'daysa',
'they': 'daysa',
'there': 'dalee',
'it': 'dalee',
'them': 'themsa',
'yes': 'yesa',
'no': 'nosa',
'that': 'dat',
'this': 'disa',
'ok': 'okeeday',
'okay': 'okeeday',
'outlander': 'outlaunder',
'happy': 'smilin',
'speak': 'spake',
'say': 'spake',
'ship': 'skeebeetle',
'pals': 'palos',
'friends': 'palos',
'go': 'gos',
'here': 'here',
'help': 'hep',
'human': 'hisen',
'story': 'tello',
'crazy': 'nutsen',
'wild': 'nutsen',
'longo': 'long',
'cool': 'hot',
'boys': 'boyos',
'mess': 'messen',
'make': 'maken',
'makes': 'maken',
'all of you': 'all-n youse',
'droids': 'machineeks',
'machines': 'machineeks',
'hey there': 'heyo dalee',
'hello': 'hidoe',
'rude': 'wude',
'oh boy': 'oie boie',
'don\'t': 'no',
'excuse': 'ex squeezee',
'doing': 'doen',
'i\'m not doing anything': 'mesa doen nutten',
'humble': 'humbule',
'love': 'luv',
'peace': 'peles',
'come': 'comen',
'for': 'per',
'the': 'da',
'invitation': 'invitateon',
'food': 'foosa',
'coward': 'fraidee frog',
'see you later': 'selongabye',
'bye': 'selongabye',
'cya': 'selongabye',
'it is': 'isa',
'to be': 'besa',
'eating': 'tongue-grabben',
'forest': 'logreena',
'fighting': 'crunchen',
'mistake': 'boopjak',
'afraid': 'fraid',
'anakin': 'annie',
'our': 'are-sa',
'arrive': 'arriven',
'accident': 'axadent',
'accidents': 'axadentes',
'back': 'backin',
'bet': 'betchen',
'big': 'biggen',
'blame': 'blamen',
'blaming': 'blamen',
'but': 'boot',
'fire': 'opadda',
'overly': 'grossly',
'work': 'jobben',
'look': 'lookie',
'lovely': 'loverly',
'beautiful': 'loverly'
};
let regex = new RegExp('\\b(' + Object.keys(wordMap).join('|') + ')\\b', 'ig');
let treeWalker = document.createTreeWalker (
document.body,
NodeFilter.SHOW_TEXT,
null,
false
);
let textNodes = [];
while (treeWalker.nextNode())
{
textNodes.push(treeWalker.currentNode);
}
for (let i = 0, len = textNodes.length; i < len; i++)
{
textNodes[i].nodeValue = textNodes[i].nodeValue.replace(regex, replaceFunction)
}
function replaceFunction(match)
{
let replacementWord = wordMap[match.toLowerCase()];
/* match capitalization -- wordMap is all lowercase */
if (match === match.toLowerCase())
{
return replacementWord;
}
let titleCase = match.charAt(0).toUpperCase() + match.slice(1);
if (match === titleCase)
{
replacementWord = replacementWord.charAt(0).toUpperCase() + replacementWord.slice(1);
}
else if (match === match.toUpperCase() && match.length > 1)
{
replacementWord = replacementWord.toUpperCase();
}
return replacementWord;
}