Website for TKRClient - built for iogames.fun website
TKRClient is a more fully-featured chatting front end:
it has color picking names, click to copy names, reduce spamming from unicodes, disable text wrapping to also reduce spam, and it has AN EXTRA BACKUP CHAT!
did you guys know tkr client let's you block any person!!!!!1!! 🔥💯💯💯🥵🥵🥵🥵🥵 🥶
https://tkrclient.neocities.org
I purposely made a nearly empty function js file, here: js/iochat/modules/custom-feature.js. You can put your script here for personal use.
add your function name in this existing file: js/iochat/iochat-modules.js
put your script containing your code in a new file here: js/iochat/modules/SCRIPT-NAME.js
finally, put the file name in index.html: index.html
for example, here is js/iochat/iochat-modules.js:
'use strict';
document.addEventListener('DOMContentLoaded', function() {
higherCharLimit();
colorPicker();
unicodeRemoval();
keybindings();
userBlocking();
colorWheel();
backgrounds();
gifAutoload();
// Added function name for script below
SCRIPT-NAME();
});
and here is js/iochat/modules/SCRIPT-NAME.js:
'use strict';
function SCRIPT-NAME() {
/* Your code here */
};
and here is index.html (only need to see the "Website features" section):
<!DOCTYPE html>
<html lang="en">
<!-- Header -->
<head>
<!-- Website features ------>
<script src="js/iochat/modules/higher-char-limit.js"></script>
<script src="js/iochat/modules/colorpicker.js"></script>
<script src="js/iochat/modules/unicode-removal.js"></script>
<script src="js/iochat/modules/keybindings.js"></script>
<script src="js/iochat/modules/user-blocking.js"></script>
<script src="js/iochat/modules/colorwheel.js"></script>
<script src="js/iochat/modules/backgrounds.js"></script>
<script src="js/iochat/modules/gif-autoload.js"></script>
<!-- Newly added script below -->
<script src="js/iochat/modules/SCRIPT-NAME.js"></script>
<script src="js/iochat/iochat-modules.js"></script>
<!-- End ------------------->