You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 9, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: templates/index.html
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,14 @@ <h3>Sounds great!</h3>
94
94
</td>
95
95
</tr>
96
96
97
+
<tr>
98
+
<tdclass="collapsing">Identifiers Prefix</td>
99
+
<td>
100
+
<p>This options makes all obfuscated identifiers have a specific prefix.</p>
101
+
<p>Use this option when obfuscating multiple files that are loaded on the same page. This option helps to avoid conflicts between global identifiers of these files. Use a different prefix for each file.</p>
102
+
</td>
103
+
</tr>
104
+
97
105
<tr>
98
106
<tdclass="collapsing">Rename Globals</td>
99
107
<td>
@@ -150,7 +158,7 @@ <h3>Sounds great!</h3>
150
158
</div>
151
159
152
160
<p>
153
-
This feature adds random blocks of dead code (i.e: code that won't be executed) to the obfuscated output, making it harder to be reverserd-engineered. See the docs on <ahref="https://github.com/javascript-obfuscator/javascript-obfuscator#deadcodeinjection" target="_new">JavaScript's obfuscator GH page</a> for an example of how this feature works.
161
+
This feature adds random blocks of dead code (i.e: code that won't be executed) to the obfuscated output, making it harder to be reverserd-engineered. See the docs on <ahref="https://github.com/javascript-obfuscator/javascript-obfuscator#deadcodeinjection" target="_new">JavaScript Obfuscator's GH page</a> for an example of how this feature works.
154
162
</p>
155
163
156
164
<tableclass="ui definition table">
@@ -216,6 +224,16 @@ <h3>Sounds great!</h3>
216
224
</td>
217
225
</tr>
218
226
227
+
<tr>
228
+
<tdclass="collapsing">Transform Object Keys</td>
229
+
<td>
230
+
<p>Transforms (obfuscates) object keys.</p>
231
+
<p>For instance, this code <code>var a = {enabled: true};</code> when obfuscated with this option will hide the <code>enabled</code> object key: <code>var a = {}; a[_0x2ae0[('0x0')] = true;</code>.</p>
232
+
<p>See the <ahref="https://github.com/javascript-obfuscator/javascript-obfuscator#transformobjectkeys" target="_new">official documentation of the JavaScript Obfuscator on GitHub</a> for a full example.</p>
233
+
<p><small>ideally used with the <strong>String Array</strong> setting.</small></p>
0 commit comments