Skip to content

Instantly share code, notes, and snippets.

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

Rubel Amin rubelamin

🏠
Working from home
View GitHub Profile
@rubelamin
rubelamin / removing_script.js
Created October 16, 2022 11:19 — forked from arafathusayn/removing_script.js
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) {}
}