Skip to content

Instantly share code, notes, and snippets.

View Bruceau's full-sized avatar
🤧
Out sick

布鲁斯欧 Bruceau

🤧
Out sick
View GitHub Profile
@FahadYousafMahar
FahadYousafMahar / removal.js
Last active September 26, 2021 13:00
Tawk.to Branding Removal
setInterval(function(){
var iFrameDOM = jQuery("iframe").contents();
var year = new Date().getFullYear();
iFrameDOM.find(".tawk-branding").attr('href',"https://webit.pk").html(' Chat <img src="https://embed.tawk.to/_s/v4/assets/images/power.svg" style="margin: 0px 2px; display: inline-block; vertical-align: middle;"> by <span class="tawk-text-bold"> WebIT.pk - Domains & Hostings</span>');
}, 100);
@arafathusayn
arafathusayn / hidetidio.js
Last active May 7, 2024 23:42
Hide TidioChat Branding (for new theme)
function hideTdo() {
var timer = null;
var target = document.querySelector('#tidio-chat iframe');
if(!target) {
if(timer !== null) {
clearTimeout(timer);
}
timer = setTimeout(hideTdo, 500);
return;
} else {
@omarmiatello
omarmiatello / google-apps-script-slide-share-telegram-slack-multicountry.js
Last active June 4, 2021 17:44
Notification system! Add button in Google Presentation for share a single slide in a Telegram channel.
function onOpen() {
var ui = SlidesApp.getUi();
ui.createMenu('GDG Tools')
.addSubMenu(ui.createMenu('Share this slide on "GDG Italia"')
.addItem('Telegram (favorite)', 'shareItalyTelegram')
.addItem('Slack', 'shareItalySlack'))
.addSubMenu(ui.createMenu('Share this slide on "GDG Spain"')
.addItem('Telegram', 'shareSpainTelegram')
.addItem('Slack (favorite)', 'shareSpainSlack'))
.addToUi();