Skip to content

Instantly share code, notes, and snippets.

View Pudochu's full-sized avatar
🏠
Working from home

wulkan Pudochu

🏠
Working from home
View GitHub Profile
@Pudochu
Pudochu / script.js
Created March 24, 2024 08:13
[NEW] Remove Tawk.to Branding (2024)
// This function is used to remove specific branding elements.
function removeBranding() {
// Select the iframe and access its content.
var iframe = document.querySelector("iframe[title*='chat']");
if (iframe && iframe.contentDocument) {
var iframeDocument = iframe.contentDocument;
// Create a new style tag.
var style = document.createElement('style');
style.innerHTML = `
@Pudochu
Pudochu / index.js
Last active February 26, 2025 16:39
[NEW] Remove Tawk.to Branding (2023)
var removeBranding = function() {
try {
var iframeDocument = document.querySelector("iframe[title*=chat]:nth-child(2)").contentDocument;
var style = document.createElement('style');
style.innerHTML = `
a[class*=tawk-button-small] {
display: none !important;
}
a[class*=tawk-branding] {