Jump to content
View in the app

A better way to browse. Learn more.

CodyChat Official Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leaderboard

Popular Content

Showing content with the highest reputation since 10/29/2025 in all areas

  1. 1 point
    Hello everyone! Since it's December, I thought I'd share this code with you. Once you've uploaded everything to the right place, all you have to do is type /snow in the chat and it will start to snow. You can turn it off by typing it again. Presentation: https://youtu.be/8Poe_VW3-oc Copy this code to the bottom of function_main.js: / --- Snow on/off --- // window.snowEnabled = false; // --- Snow start --- window.startSnow = function() { if (document.getElementById('snow_effect')) return; let snow = document.createElement("div"); snow.id = "snow_effect"; snow.style.position = "fixed"; snow.style.top = 0; snow.style.left = 0; snow.style.width = "100%"; snow.style.height = "100%"; snow.style.pointerEvents = "none"; snow.style.zIndex = "999999"; document.body.appendChild(snow); for (let i = 0; i < 80; i++) { let flake = document.createElement("div"); flake.className = "flake"; flake.style.left = (Math.random() * 100) + "vw"; flake.style.animationDuration = (3 + Math.random() * 5) + "s"; flake.style.opacity = (0.3 + Math.random()).toFixed(2); flake.style.fontSize = (10 + Math.random() * 20) + "px"; flake.style.animationDelay = (Math.random() * 5) + "s"; flake.innerHTML = ""; snow.appendChild(flake); } }; // --- Snow start --- window.stopSnow = function() { let snow = document.getElementById('snow_effect'); if (snow) snow.remove(); };Copy this to the bottom of the css/main.css file: #snow_effect .flake { position: absolute; top: -5vh; color: #fff; animation-name: fall; animation-timing-function: linear; animation-iteration-count: infinite; } @keyframes fall { 0% { transform: translateY(0); } 100% { transform: translateY(110vh) rotate(360deg); } } snowfall.zip
  2. There are only two archives available for download: versions 6.0 and 7.0. There's no version 9.0. The versions aren't decoded, so there's not much point. You'll probably have to buy a subscription to doniaweb, since they have a null 9.0.
    • 8 downloads
    • Version 1.0.0
    Just copy and paste the fallowing code into css/custom.css .progress_box { background-color: #222; padding: 2px; } .progress_bar { border-radius: 10px; background: linear-gradient( 90deg, #ff6b6b, #ff8e53, #f1c40f, #1abc9c, #3498db, #9b59b6, #e74c3c ); background-size: 200%; position: relative; overflow: hidden; animation: rainbow 6s linear infinite; font-weight: bold; text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); box-sizing: border-box; } .progress_bar.animate { animation: slideIn 1.5s ease-in-out forwards, rainbow 6s linear infinite; } @keyframes slideIn { from { width: 0; } to { width: var(--progress-width); } } @keyframes rainbow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } } .progress_bar::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient( 45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent ); background-size: 40px 40px; }Important: Then type the /clearcache command, and reload the page and enjoy!.
    Free

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.