>>105622986https://sizeof.cat/js/vendor.js
this.services = {
reddit: () => {
let title = "Reddit - Dive into anything";
let favicon = '/img/favicons/reddit.png';
return {
title, favicon
}
},
x: () => {
let title = "X. It's what's happening / X";
let favicon = '/img/favicons/x.ico';
return {
title, favicon
}
},
bluesky: () => {
let title = 'Discover - Bluesky';
let favicon = '/img/favicons/bluesky.png';
return {
title, favicon
}
},
wikipedia: () => {
let title = 'Wikipedia';
let favicon = '/img/favicons/wikipedia.ico';
return {
title, favicon
}
},
imdb: () => {
let title = 'Married... with Children (TV Series 1987–1997) - IMDb';
let favicon = '/img/favicons/imdb.png';
return {
title, favicon
}
},
twitter: () => {
let title = 'Twitter';
let favicon = '/img/favicons/twitter.ico';
return {
title, favicon
}
},
tiktok: () => {
let title = 'Explore - Find your favourite videos on TikTok';
let favicon = '/img/favicons/tiktok.ico';
return {
title, favicon
}
},
facebook: () => {
let count = Math.round(Math.random() * 99) + 1;
let title = `(${count}) Facebook`;
let favicon = `/img/favicons/facebook.ico`;
return {
title, favicon
}
},
instagram: () => {
let count = Math.round(Math.random() * 10) + 1;
let title = `(${count}) Instagram`;
let favicon = `/img/favicons/instagram.png`;
return {
title, favicon
}
},
gmail: () => {
let title = 'Inbox';
let count = Math.round(Math.random() * 12);
let emailCount = count;
let gmailIcon = '/img/favicons/gmail_';
if (count === 11) {
count = 50;
emailCount = `${count}+`;
} else if (count === 12) {
count = 100;
emailCount = `${count}+`;
}
let favicon = `${gmailIcon}${count}.png`;
if (emailCount) {
title = `Inbox (${emailCount})`;
}
return {
title, favicon
}
}
}