Skip to content

https://tkrclient.github.io - minimal code, anonymous, no login, chat site. collects no personally identifiable information about you. iogames.fun chat and mods, iogames website inspired, io games, front end client to chat, color change name, block users, alternative chats, drawing, custom backgrounds, some gif support, custom chat and draw server

License

Notifications You must be signed in to change notification settings

tkrclient/tkrclient.github.io

tkrclient.github.io

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.github.io

https://tkrclient.nekoweb.org

https://tkrclient.neocities.org

How to add features?

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.

OR

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 ------------------->

backend code of chat server (python, picows):

https://github.com/tkrclient/pygames-chat

backend code of drawing/whiteboard server:

https://github.com/tkrclient/iogames-draw

About

https://tkrclient.github.io - minimal code, anonymous, no login, chat site. collects no personally identifiable information about you. iogames.fun chat and mods, iogames website inspired, io games, front end client to chat, color change name, block users, alternative chats, drawing, custom backgrounds, some gif support, custom chat and draw server

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •