Skip to content

Instantly share code, notes, and snippets.

View garyfisher's full-sized avatar

Gary garyfisher

  • Poland / Cracow
View GitHub Profile
@arafathusayn
arafathusayn / removing_script.js
Last active July 24, 2024 06:38
Remove Tawk.to Branding (2022)
var removeBranding = function() {
try {
var element = document.querySelector("iframe[title*=chat]:nth-child(2)").contentDocument.querySelector(`a[class*=tawk-branding]`)
if (element) {
element.remove()
}
} catch (e) {}
}