Can you please add VK.com ?
Sure! I will add it for the next release.
For now, you can add it manually. See here: https://github.com/saenzramiro/rambox/wiki/Add-a-Custom-Service
I will wait. :+1: and transfer from Franz
How i can subscribe on your newsletter? about update new service's and etc...
I didn't add a newsletter option yet. I will think about it and let you know.
I made a research and VK is a Social Network, not a messaging or emailing app. So I will not add it natively in the Service Lists, but you can still add it manually.
VK is social network, but it indeed has an inbuilt messenger page. Franz allows adding VK, and that's very convenient to be notified for new messages.
Please consider adding VK, too.
@justpusher I supported the author of six months ago, and together we fixed a bugs and made the code to display messages:
function checkUnread(){updateBadge(parseInt(document.getElementById("l_msg").innerText.replace(/\D+/g,"")))}function updateBadge(e){e>=1?document.title="("+e+") "+originalTitle:document.title=originalTitle}var originalTitle=document.title;setInterval(checkUnread,3000);

I will plan to add VK in next release.

made the messenger full screen, kinda like Facebook Messenger.
function remove(id) {document.getElementById(id).setAttribute("style", "display: none;");}
remove("side_bar");remove("page_header_cont");remove("header_wrap2");remove("wrap_between");
var new_width = Number(document.getElementsByClassName("scroll_fix")[0].getAttribute("style").match(/\d+/)[0]) + 16;
document.getElementsByClassName("body_im")[0].setAttribute("style", "width: " + new_width + "px !important;");
document.getElementById("page_wrap").setAttribute("style", "width: " + new_width + "px !important;");
document.getElementsByClassName("scroll_fix")[0].setAttribute("style", "width: " + new_width + "px;");
document.getElementById("page_layout").setAttribute("style", "width: " + new_width + "px !important; padding: 0px !important; margin:0px !important");
document.getElementById("page_body").setAttribute("style", "width: " + new_width + "px !important; padding: 0px !important; margin:0px !important");
document.getElementsByClassName("im-page")[0].setAttribute("style", "height: calc(100vh - 1px); width: " + new_width + "px !important; padding: 0px !important;");
document.getElementsByClassName("im-page--chat-body-abs")[0].removeAttribute("style");
document.getElementsByClassName("im-chat-input--textarea")[0].setAttribute("style", "width: calc(100vw - 450px);");
document.getElementsByClassName("im-chat-input--txt-wrap")[0].setAttribute("style", "width: calc(100vw - 450px);");
window.onload = function() {if(!window.location.hash) {window.location = window.location + '#loaded';window.location.reload();}}
Tried to make it work for all screens, but not sure if I succeed.
I update the code as I fix the bugs. Now, the code doesn't break unread messages notifier.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
made the messenger full screen, kinda like Facebook Messenger.
function remove(id) {document.getElementById(id).setAttribute("style", "display: none;");} remove("side_bar");remove("page_header_cont");remove("header_wrap2");remove("wrap_between"); var new_width = Number(document.getElementsByClassName("scroll_fix")[0].getAttribute("style").match(/\d+/)[0]) + 16; document.getElementsByClassName("body_im")[0].setAttribute("style", "width: " + new_width + "px !important;"); document.getElementById("page_wrap").setAttribute("style", "width: " + new_width + "px !important;"); document.getElementsByClassName("scroll_fix")[0].setAttribute("style", "width: " + new_width + "px;"); document.getElementById("page_layout").setAttribute("style", "width: " + new_width + "px !important; padding: 0px !important; margin:0px !important"); document.getElementById("page_body").setAttribute("style", "width: " + new_width + "px !important; padding: 0px !important; margin:0px !important"); document.getElementsByClassName("im-page")[0].setAttribute("style", "height: calc(100vh - 1px); width: " + new_width + "px !important; padding: 0px !important;"); document.getElementsByClassName("im-page--chat-body-abs")[0].removeAttribute("style"); document.getElementsByClassName("im-chat-input--textarea")[0].setAttribute("style", "width: calc(100vw - 450px);"); document.getElementsByClassName("im-chat-input--txt-wrap")[0].setAttribute("style", "width: calc(100vw - 450px);"); window.onload = function() {if(!window.location.hash) {window.location = window.location + '#loaded';window.location.reload();}}Tried to make it work for all screens, but not sure if I succeed.
I update the code as I fix the bugs. Now, the code doesn't break unread messages notifier.