- This topic has 0 replies, 1 voice, and was last updated 1 year, 3 months ago by .
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Uniting People
What makes us different from other similar websites? › Forums › Tech › Change Skype display name on your side
Tagged: Skype, Tampermonkey, Username change
I made a script that will change the name that is shown on Skype, web version, when you log in. This is because I use Skype for work, on the Desktop computer and needed to display a different name, when others see my Skype app.
// ==UserScript==
// @name Change Skype Username
// @namespace https://taksshack.com/
// @version 0.4
// @description Changes the displayed username on Skype Preview
// @match https://preview.web.skype.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
function changeUsername() {
GM_addStyle('div[data-text-as-pseudo-element="AAA"]:before { content: "BBB" !important; }');
}
window.onload = changeUsername;
})();