Change Skype display name on your side
What makes us different from other similar websites? › Forums › Tech › Change Skype display name on your side
Tagged: Skype, Tampermonkey, Username change
- This topic has 0 replies, 1 voice, and was last updated 1 year ago by thumbtak.
Viewing 1 post (of 1 total)
- AuthorPosts
- November 9, 2023 at 9:21 am #7049thumbtakKeymaster
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.
- Install Tampermonkey from your browsers web store.
- Click “Tampermonkey => Create a new script”
- Edit the below code with the display name as the one you see in Skype, near the bottom when you log in at http://preview.web.skype.com. Replace the name you want to display. AAA (in the script) is the default name, and BBB is the name you want to change it to.
- Copy and paste the new code to Tampermonkey and save it.
- Press F5 on the browser version of Skype to refresh the page.
// ==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; })();
- AuthorPosts
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.